:root {
  --color-background: #000000;
  --color-accent1: #8BD3FF;
  --color-accent2: #FFD166;
  --color-text: #E6EEFC;
  --color-text-muted: #A8B3CF;
  --color-card-background: #121A2B;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  overflow-x: hidden;
}

h1, h2 {
  color: var(--color-accent1);
}

.highlight {
  color: var(--color-accent2);
}

.card {
  background-color: var(--color-card-background);
}

.secondary-info {
  color: var(--color-text-muted);
}

#root {
  width:100%;
}

@keyframes commentSlideIn {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.comment-enter {
  animation: commentSlideIn 250ms ease-out both;
}

.FacebookLogin > button {
  /* Layout & Sizing */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px; /* Or match your Google button's width */
  padding: 10px 15px;
  
  /* Appearance */
  background-color: #1877F2; /* Official Facebook Blue */
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  
  /* Interaction */
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;

}

.FacebookLogin > button:hover {
  background-color: #166FE5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.FacebookLogin > button:disabled {
  background-color: #9dbdf2;
  cursor: not-allowed;
}