/* Profile Tab Dropdown Styling */
    .profile-dropdown {
      z-index: 1200;
      width: 280px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: none;
      padding: 0;
      overflow: hidden;
    }

    .profile-header {
      padding: 16px;
      text-align: center;
      background: #000000ad;
      border-bottom: 1px solid #e9ecef;
    }

    .profile-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #0000006c;
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .profile-nav-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #00000092;
      color: white;
      display: flex;
      text-decoration: none;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
    }

    .profile-field {
      padding: 12px 16px;
    }

    .profile-field-label {
      font-size: 12px;
      color: #0e0e0e;
      margin-bottom: 4px;
      display: block;
      text-align: left;
    }

    .profile-field-value {
      width: 100%;
      padding: 8px 12px;
      background: #eeeeee;
      border-radius: 4px;
      border: none;
      font-size: 14px;
      color: black;
    }

    .profile-footer {
      padding: 12px 16px;
      border-top: 1px solid #000000;
    }

    .logout-btn {
      width: 100%;
      padding: 8px 16px;
      background: white;
      border: 1px solid #0c0c0c;
      border-radius: 4px;
      color: #0b0b0b;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s;
    }

    .logout-btn:hover {
      background: #f8f9fa;
    }