.announcement-container {
  background: white;
  margin: 16px;
  padding: 16px;
  border-radius: 8px;
  flex: 1;
}

.announcement-header__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.announcement-header__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex {
  display: flex;
  align-items: center;
}

.announcement-btn {
  background: #e0e0e0;

  border: none;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

.announcement-table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:hover {
  background-color: #f4f4f4;
}

.announcement-pagination {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  background-color: white;
  align-items: center;
}

.announcement-pagination button {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
  font-size: 0.875rem;
}

.announcement-pagination button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.announcement-pagination__buttons {
  display: flex;
  gap: 8px;
}

.announcement-btn.active {
  background-color: #4caf50;
  color: white;
}

.announcement-btn:hover:not([disabled]) {
  background-color: #ccc;
}

.announcement-search-bar input {
  border: none;
  outline: none;
}
