
:root {
    --pop-magenta: #e91e63;
    --pop-blue: #2196f3;
    --pop-yellow: #ffeb3b;
    --pop-bg: #fdf6f9;
}

body {
    background-color: var(--pop-bg);
}

.form-section {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.form-title {
    color: var(--pop-magenta);
}

.btn-pop {
    background-color: var(--pop-magenta);
    color: white;
}

    .btn-pop:hover {
        background-color: #c2185b;
    }

label {
    font-weight: 500;
    color: var(--pop-blue);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    padding: 0.5rem;
    border: 1px solid #ccc;
    text-align: center;
}

.has-entry {
    background-color: #d4edda;
    border-color: #28a745;
}