/* logout.css */
    :root {
      --primary: #FF6B35;
      --secondary: #004E89;
      --accent: #FFD166;
      --light: rgba(255, 255, 255, 0.9);
      --dark: #1A1A1D;
      --transition: all 0.3s ease;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--light);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    .background-container {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      background: url("images/background-PARMISA.jpg") no-repeat center center / cover;
      z-index: -2;
    }

    .background-container::after {
      content: ""; position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: -1;
    }

    .navbar {
      z-index: 10; padding: 1.5rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
    }

    .navbar-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem; font-weight: 700;
      color: var(--light); text-decoration: none;
      letter-spacing: 1px;
    }

    .navbar-brand span { color: var(--primary); }

    nav a {
      color: var(--light); margin-left: 2rem; text-decoration: none; font-weight: 500;
      transition: var(--transition);
    }
    nav a:hover { color: var(--primary); }

    main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .logout-container {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 3rem;
      max-width: 500px;
      width: 100%;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .logout-icon {
      font-size: 4rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      animation: fadeIn 0.5s ease-in;
    }

    .logout-container h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      color: var(--light);
      margin-bottom: 1rem;
      animation: slideUp 0.6s ease-out;
    }

    .logout-container p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2rem;
      line-height: 1.6;
      animation: slideUp 0.7s ease-out;
    }

    .logout-message {
      background: rgba(255, 107, 53, 0.1);
      border: 1px solid var(--primary);
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: 2rem;
      animation: slideUp 0.8s ease-out;
    }

    .logout-message.success {
      background: rgba(34, 197, 94, 0.1);
      border-color: #22c55e;
      color: #22c55e;
    }

    .buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: slideUp 0.9s ease-out;
    }

    .btn {
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      display: inline-block;
      font-family: 'Inter', sans-serif;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
    }

    .btn-primary:hover {
      background: #e05c28;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--light);
      border: 2px solid var(--light);
    }

    .btn-secondary:hover {
      background: var(--light);
      color: var(--dark);
      transform: translateY(-2px);
    }

    .loading {
      display: none;
      color: var(--accent);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .loading.show {
      display: block;
    }

    .spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 209, 102, 0.3);
      border-top: 3px solid var(--accent);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 0.5rem;
    }

    footer {
      text-align: center; padding: 1rem; font-size: 0.9rem; opacity: 0.6;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .logout-container { padding: 2rem; margin: 1rem; }
      .logout-container h1 { font-size: 1.5rem; }
      .buttons { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 200px; }
    }
 