.logout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(15px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 999999;
}

.logout-card {
  width: 90%;
  max-width: 420px;

  background: rgba(10, 15, 30, 0.95);

  border: 1px solid rgba(0, 255, 255, 0.25);

  border-radius: 25px;

  padding: 30px;

  text-align: center;

  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.15),
    0 0 60px rgba(0, 255, 255, 0.1);
}

.logout-icon {
  font-size: 55px;
  margin-bottom: 15px;
}

.logout-card h2 {
  color: #00e5ff;
  margin-bottom: 12px;
}

.logout-card p {
  color: #d7d7d7;
  line-height: 1.6;
}

.logout-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.stay-btn,
.logout-btn {
  flex: 1;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

.stay-btn {
  color: white;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.logout-btn {
  color: white;
  background: linear-gradient(135deg, #ff4d4d, #ff0066);
}

.stay-btn:hover,
.logout-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {
  .logout-card {
    width: 92%;
    padding: 8px;
  }

  .logout-buttons {
    flex-direction: column;
  }
}
/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {
  .logout-modal-content {
    width: 82% !important;
    max-width: 140px !important;
    padding: 16px 12px !important;
  }

  .logout-icon {
    font-size: 28px !important;
    margin-bottom: 6px !important;
  }

  .logout-title {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  .logout-message {
    font-size: 12px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }

  .logout-buttons {
    gap: 6px !important;
  }

  .logout-btn {
    height: 38px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }
}
