.booking {
    display: flex;
    gap: 4%;
    align-items: flex-start;
}

.calender {
    width: 40%;
    max-width: 400px;
    min-width: 270px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25em;
    font-family: Cormorant, serif;
}

.calender-header {
    color: var(--joel_brown);
    text-align: center;
}

.year-book {
    font-size: 1rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.month-picker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25em 0 0.75em;
}

.month {
    font-family: Cinzel, cursive;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.month-change {
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--joel_brown);
    user-select: none;
}

.month-change input[type="submit"] {
    background: none;
    border: none;
    color: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.month-change:hover {
    color: black;
}

.calender-week-day,
.calender-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calender-week-day p {
    text-align: center;
    color: var(--joel_brown);
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.7;
    padding-bottom: 0.3em;
}

.week-day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border-radius: 6px;
    color: #333;
}

.notFull {
    cursor: pointer;
    background: #faf7f3;
    border: 1px solid rgba(125, 90, 62, 0.25);
    transition: background 0.15s, color 0.15s;
}

.notFull:hover {
    background: var(--joel_brown);
    color: white;
}

.pastDay {
    color: #bbb;
    background: transparent;
}

.full {
    background: #e8d5cb;
    color: #a85a3e;
    cursor: not-allowed;
}

.this-day {
    outline: 2px solid var(--joel_brown);
    outline-offset: -2px;
    font-weight: 600;
}

.selected {
    background: var(--joel_brown) !important;
    color: white !important;
}

.submitDate {
    padding-top: 1em;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.submitDate input {
    border: none;
    background: transparent;
    font-family: inherit;
    color: var(--joel_brown);
    font-weight: 600;
    text-align: center;
    width: auto;
    pointer-events: none;
}

.booking-inputs {
    flex: 1;
    display: grid;
    gap: 0.75em;
}

.booking-inputs label {
    display: grid;
    gap: 0.25em;
    font-family: Cormorant, serif;
}

.booking-inputs input {
    padding: 0.4em 0.6em;
    border: 1px solid rgba(125, 90, 62, 0.3);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.booking-inputs input:focus {
    outline: none;
    border-color: var(--joel_brown);
}

.booking-inputs input[type="submit"],
.booking-inputs .commandButton,
.booking-inputs input[value="Boka"] {
    background: var(--joel_brown);
    color: white;
    border: none;
    padding: 0.6em 1em;
    cursor: pointer;
    font-family: Cinzel, cursive;
    letter-spacing: 0.05em;
    margin-top: 0.5em;
}

.booking-inputs input[type="submit"]:hover {
    opacity: 0.9;
}

@media screen and (max-width: 750px) {
    .booking {
        display: block;
    }
    .calender {
        width: 100%;
        max-width: none;
        margin-bottom: 1.5em;
    }
    .booking-inputs {
        width: 100%;
    }
}
