/* Logout Modal Styles */
.logout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.logout-modal {
  background: white;
  border-radius: 20px;
  padding: 0;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.3s ease-out;
  overflow: hidden;
}

.logout-modal-header {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 25px 30px;
  text-align: center;
  position: relative;
}

.logout-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
}

.logout-icon {
  font-size: 48px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logout-modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logout-modal-content {
  padding: 30px;
  text-align: center;
}

.logout-modal-content p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: #374151;
  line-height: 1.5;
}

.user-info {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  padding: 15px 20px;
  border-radius: 12px;
  margin: 20px 0;
  border: 2px solid #d1d5db;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  display: block;
  margin-bottom: 5px;
}

.user-role {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logout-warning {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 15px;
  color: #92400e;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 0 0;
}

.logout-modal-actions {
  padding: 0 30px 30px 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-cancel, .btn-confirm-logout {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.btn-cancel {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-cancel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

.btn-confirm-logout {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-confirm-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-icon {
  font-size: 16px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 480px) {
  .logout-modal {
    width: 95%;
    margin: 20px;
  }
  
  .logout-modal-header {
    padding: 20px 25px;
  }
  
  .logout-icon {
    font-size: 40px;
  }
  
  .logout-modal-header h3 {
    font-size: 20px;
  }
  
  .logout-modal-content {
    padding: 25px;
  }
  
  .logout-modal-actions {
    padding: 0 25px 25px 25px;
    flex-direction: column;
  }
  
  .btn-cancel, .btn-confirm-logout {
    width: 100%;
  }
}












