/* User Dropdown Styling */
.user-menu {
    position: relative;
  }

  .btn-user {
    background: linear-gradient(135deg, #187695 0%, #38bdf8 100%);
    border: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 118, 149, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Tabler Icons Styling */
  .icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .icon.icon-tabler {
    width: 1.2em;
    height: 1.2em;
  }

  /* Flag Icons Styling */
  .flag-icon {
    width: 30px;
    height: 20px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .dropdown-item .flag-icon {
    width: 24px;
    height: 16px;
  }

  /* Tabler Icons - Font Awesome Compatibility */
  .fa-2x {
    width: 2em !important;
    height: 2em !important;
  }

  .fa-3x {
    width: 3em !important;
    height: 3em !important;
  }

  .text-muted {
    color: #6c757d !important;
  }

  .text-success {
    color: #28a745 !important;
  }

  /* Location Section Styling */
  .country-item {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .country-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .country-flag {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
  }

  .country-item:hover .country-flag {
    transform: scale(1.05);
  }

  .country-flag-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
  }

  .country-item:hover .country-flag-placeholder {
    transform: scale(1.05);
  }

  .country-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 12px;
    transition: all 0.3s ease;
  }

  .country-link:hover {
    text-decoration: none;
    color: inherit;
  }

  .c-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3748;
    margin-bottom: 4px;
  }

  .c-count {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
  }

  /* City Cards Styling */
  .city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all 0.3s ease;
  }

  .city-card:hover .city-image {
    transform: scale(1.05);
  }

  .city-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .city-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .city-overlay .label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* Slider Navigation */
  .slider-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .slider-nav-btn:hover {
    background: #187695;
    border-color: #187695;
    color: white;
    transform: scale(1.05);
    text-decoration: none;
  }

  .nav-icon {
    width: 20px;
    height: 20px;
  }

  /* Bullets Styling */
  .bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .bullet.active {
    background: #187695;
    transform: scale(1.2);
  }

  .bullet:hover {
    background: #187695;
    transform: scale(1.1);
  }


  .btn-user:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #187695 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 118, 149, 0.3);
  }

  .btn-user:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 118, 149, 0.25);
  }

  .dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
  }

  .dropdown-item:hover {
    background: #f8f9fa;
    color: #187695;
  }

  .dropdown-item.text-danger:hover {
    background: #f8f9fa;
    color: #dc3545;
  }

  .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e7eb;
  }


  /* Zoom Meeting Button Styles */
  .zoom-meeting-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .zoom-meeting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  /* Responsive Zoom Meeting Button */
  @media (max-width: 768px) {
    .zoom-meeting-btn {
      bottom: 15px;
      right: 15px;
      padding: 10px 18px;
      font-size: 14px;
      border-radius: 40px;
    }
  }

  @media (max-width: 480px) {
    .zoom-meeting-btn {
      bottom: 10px;
      right: 10px;
      padding: 8px 15px;
      font-size: 12px;
      border-radius: 35px;
    }
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #667eea;
  }

  .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
  }

  .submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
  }

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

  .alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  /* Toast Message Styles */
  .toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    pointer-events: none;
  }

  .toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid #28a745;
  }

  .toast.show {
    transform: translateX(0);
  }

  .toast.error {
    border-left-color: #dc3545;
  }

  .toast.success {
    border-left-color: #28a745;
  }

  .toast.warning {
    border-left-color: #ffc107;
  }

  .toast.info {
    border-left-color: #17a2b8;
  }

  .toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .toast-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
  }

  .toast-message {
    font-size: 13px;
    margin: 0;
    color: #666;
  }

  .toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    padding: 0;
    line-height: 1;
  }

  .toast-close:hover {
    color: #333;
  }
