
    /* ====== POPUP LOGIN ====== */
    /* Overlay Popup */
	#popupOverlay {
      position: fixed;
	  top: 0; left: 0;
	  width: 100%; height: 100%;
	  background: rgba(0, 0, 0, 0.3);
	  backdrop-filter: blur(6px);
	  display: none;
	  justify-content: center;
	  align-items: center;
	  z-index: 999;
	  transition: opacity 0.3s ease;
	}
	#popupOverlay.active {
      display: flex;
      opacity: 1;
    }

    .popup {
      background: #fff;
      padding: 30px 40px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      text-align: center;
      max-width: 400px;
      width: 90%;
    }

    .popup input {
      width: 100%;
      padding: 10px 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
    }

    .popup button {
      background-color: #002b5c;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }

    .popup button:hover {
      background-color: #ffd700;
      color: #002b5c;
    }
  
    .popupOverlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .popupOverlay.active { display: flex; }

    .popup-card {
      background: #ffd700;
      border-radius: 16px;
      width: 320px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      overflow: hidden;
      animation: fadeIn 0.3s ease;
    }
    .popup-header {
      background: #002b5c;
      color: #fff;
      text-align: center;
      padding: 1rem;
      font-size: 1.2rem;
      font-weight: 600;
    }
    .popup-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .popup-body input {
      padding: 10px 35px 10px 10px;
      border: none;
      border-radius: 6px;
      outline: none;
      width: 100%;
    }
    .password-wrapper {
      position: relative;
    }
    .toggle-password {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      cursor: pointer;
      color: #002b5c;
    }
    .popup-body button {
      background: #002b5c;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }
    .popup-body button:hover {
      background: #001f44;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .btn-login {
      background: #ffd700;
      color: #002b5c;
      font-weight: 600;
      border: none;
      padding: 7px 18px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      margin-left: 15px;
    }
    .btn-login:hover {
      background: #002b5c;
      color: #fff;
    }
	
		
    /* ====== Dropdown Profil Admin ====== */
    .profile-menu { position: relative; display: inline-block; margin-left: 15px; }
    .profile-btn {
      background: transparent; border: none; color: white; font-size: 18px;
      cursor: pointer; display: flex; align-items: center; gap: 6px;
    }
    .profile-dropdown {
      align-items: left; 
	  display: none; position: absolute; right: 0; top: 110%;
      background-color: white; border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2); min-width: 160px; z-index: 100;
    }
    .profile-dropdown.active { display: block; animation: fadeIn 0.2s ease; }
    .profile-dropdown a {
      align-items: left; 
      display: block; padding: 10px 15px; text-decoration: none; color: #003366; font-weight: 500;
    }
    .profile-dropdown a:hover { background-color: #f0f0f0; }
