/* Logout button styles - Updated for navbar */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logout-button {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Sarabun", sans-serif;
  border: 2px solid transparent;
  min-width: 120px;
  justify-content: center;
}

.logout-button:hover {
  background: linear-gradient(135deg, #c82333 0%, #c0392b 100%);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.logout-button:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

.logout-button i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.logout-button:hover i {
  transform: rotate(-5deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-left {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .logout-button {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 100px;
    gap: 6px;
  }
  
  .logout-button i {
    font-size: 12px;
  }
}
