/* ============================================
   LOGOUT BUTTON STYLING
   ============================================ */

.sidebar-logout-section {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logout-button:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.logout-button:active {
  transform: translateY(0);
}

.logout-button i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.logout-button:hover i {
  transform: rotate(-10deg);
}

/* Responsive */
@media (max-width: 575px) {
  .sidebar-logout-section {
    padding: 12px;
  }

  .logout-button {
    padding: 10px 14px;
    font-size: 12px;
  }

  .logout-button i {
    font-size: 14px;
  }
}
