.elementor-840 .elementor-element.elementor-element-4f59162{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-8bbfde4 */.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(4px); /* subtle blur */
}

.modal-content {
  background: #fff;
  max-width: 420px;
  margin: 120px auto;
  padding: 25px 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 18px;      /* visible size */
  cursor: pointer;
  color: white;
  background: #00509e;
  border: none;
  padding: 4px 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.modal-close:hover {
  background-color: #003366;
  color: #fff;
}

#modalDelete h2 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 22px;
}

#modalDelete p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.button {
  padding: 4px 18px;
  border-radius: 6px;
  border: none;
  font-weight: 70;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.button:hover {
  opacity: 0.9;
}
.button-primary {
  padding: 11px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 70;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.button:hover {
  opacity: 0.9;
}

/* Cancel Button */
#deleteCancelBtn {
  background: #eee;
  color: #444;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#deleteCancelBtn:hover {
  background: #ddd;
}

/* Delete Button */
#deleteConfirmBtn {
  background: #cc0000;
  color: white;
  box-shadow: 0 3px 8px rgba(204, 0, 0, 0.5);
}

#deleteConfirmBtn:hover {
  background: #a30000;
  box-shadow: 0 4px 10px rgba(163, 0, 0, 0.7);
}


.button-danger {
  background-color: #cc0000;
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.button-danger:hover {
  background-color: #990000;
}


#successToast {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 10000;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


.wp-list-table th {
  background-color: #003366;
  color: white;
  text-align: left;
}

.wp-list-table td {
  vertical-align: middle;
}


.filter-search-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.search-input {
  flex: 1 1 250px;
  padding: 10px 14px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #00509e;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 80, 158, 0.3);
}

.filter-select {
  flex: 0 0 180px;
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  border-color: #00509e;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 80, 158, 0.3);
}

.btn-primary {
  flex: 0 0 100px;
  padding: 10px 0;
  background-color: #00509e;
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-primary:hover {
  background-color: #003366;
}

@media (max-width: 480px) {
  .filter-search-container {
    flex-direction: column;
    gap: 15px;
  }
  .filter-select,
  .btn-primary {
    flex: 1 1 100%;
  }
}/* End custom CSS */