html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.calendar-day {
    height: 40px;
    transition: all 0.2s ease;
}

    .calendar-day:not(.bg-light):hover {
        background-color: var(--bs-primary);
        color: white !important;
        transform: scale(1.1);
    }

.time-slot {
    transition: all 0.2s;
}

    .time-slot:hover {
        background-color: var(--bs-gray-100);
    }

.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.form-control {
    border-radius: 8px;
    border: 1px solid var(--bs-gray-300);
}

    .form-control:focus {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }

.btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.card {
    border-radius: 12px;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.alert {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.5em 0.8em;
    border-radius: 6px;
}

.bg-login-image-casaduana {
    background: url("/img/LogoCasaduana.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}