/* General styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Login card */
.card {
    border: none;
    border-radius: 1rem;
    background: #fff;
}

.card h3 {
    font-weight: 600;
}

/* Navbar */
.navbar {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.login-bg {
    background-color: #06a6e0; /* Your color */
}

/* Buttons */
.btn-primary, .btn-success, .btn-outline-light {
    border-radius: 30px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
}

.btn-primary:hover, .btn-success:hover {
    opacity: 0.9;
}

/* Table */
.table {
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.table thead {
    background-color: #f1f1f1;
}

.table th {
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Modal */
.modal-content {
    border-radius: 0.75rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

/* Form elements */
.form-control, .form-select {
    border-radius: 0.5rem;
    box-shadow: none !important;
    border: 1px solid #ccc;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
}

/* Search box */
#search {
    border-radius: 3px;
    padding-left: 1rem;
}

/* Profile card icon (e.g., dashboard) */
.profile-icon-sm {
    background-size: contain;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* Copy icon inside password field */
.icon-copy-btn {
    top: 70%;
    right: 0.5rem;
    border: none;
background-color: #f8f9fa;
    color: #333;
    padding: 6px;

    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.icon-copy-btn:hover {
    background: #ced4da;
    color: #000;
}
.toast-container {
  z-index: 9999;
  bottom: 1rem;
  right: 1rem;
}

@media (max-width: 576px) {
  .toast-container {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    bottom: auto !important;
    right: auto !important;
    width: 90%;
    max-width: 300px;
  }

  .toast-container .toast {
    width: 100%;
    transition: top 0.3s ease, transform 0.3s ease;
  }
  
}
.availability-center-wrapper {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 300px;
  z-index: 1100;
}
.status-approved {
  color: green;
  font-weight: bold;
}
.status-pending {
  color: orange;
  font-weight: bold;
}
  .status-confirmed { color: #28a745; font-weight: bold; }
  .status-pending { color: #fd7e14; font-weight: bold; }
.country-card, .city-card {
    background-color: #f8f9fa;
    border-left: 5px solid #009FE3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 17px;         /* for spacing between cards */
}
.mobile-view {
    padding-bottom: 80px;
}

.icon-press-effect {
  transition: transform 0.1s ease-in-out;
}

.icon-press-effect:active {
  transform: scale(0.9);
}
/* Slide-down animation for notifications */
@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu.show.animate-slide {
  animation: dropdownSlideIn 0.25s ease-out;
}
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}
.icon-uniform {
  font-size: 1.2rem;
  vertical-align: middle;
}
.button-press:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}
.button-press:active {
    transform: scale(0.93);
    transition: transform 0.1s;
}

.rounded-action-btn {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.20rem;
}

.btn-cancel {
    background-color: #f1f3f4;
    color: #333;
    border: none;
    border-radius: 1.8rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: background 0.15s;
}
.btn-cancel:hover, .btn-cancel:focus {
    background-color: #e2e3e5;
}

.btn-save {
    background-color: #009FE3;
    color: #fff;
    border: none;
    border-radius: 1.8rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: background 0.15s;
}
.btn-save:hover, .btn-save:focus {
    background-color: #057bb6;
}
@media (max-width: 575.98px) {
  .modal-content {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    max-height: 80vh;
    overflow: hidden;
    padding-bottom: 80px !important;
  }
  .modal-body {
    overflow-y: auto;
    flex: 1 1 auto;
    max-height: 50vh;
  }
  .modal-footer {
    /* Optionally add extra padding/margin here */
    margin-bottom: 0;
  }
}


.bg-success-subtle    { background-color: #e9f8ec !important; }
.bg-danger-subtle     { background-color: #fdeaea !important; }
.bg-warning-subtle    { background-color: #fef4e5 !important; }
.bg-secondary-subtle  { background-color: #f1f1f1 !important; }
.shadow-sm            { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }