/* Alert Messages Styling */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.alert-icon {
  font-size: 20px;
}

/* Filter Section */
.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 6px 12px;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-search {
  background: #28a745;
}

.btn-search:hover {
  background: #218838;
}

.btn-export {
  background: #e60303;
}

.btn-export:hover {
  background: #cc0202;
}

.btn-send {
  background: #007bff;
}

.btn-send:hover {
  background: #0056b3;
}

.btn-close {
  background: #007bff;
}

.btn-close:hover {
  background: #0056b3;
}

.btn-alert-close {
  background: #dc3545;
}

.btn-alert-close:hover {
  background: #c82333;
}

/* Table */
.history-table {
  margin-top: 10px;
  width: 100%;
}

/* Action Container */
.action-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 300px;
  position: relative;
}

/* Alert Animation */
.alert-fade {
  transition: opacity 0.5s ease;
}

