html, button, input, select, textarea {
    font-family: Georgia, serif;
    font-size: inherit;
}

body {
    color: #182E30;
    margin: 30px;
    margin-bottom: 0px;
    letter-spacing: 0em;
}

.webhflexcenter {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.webhflexend {
    display: flex;
    justify-content: flex-end;
}

.webvflex {
    display: flex;
    flex-direction: column;
}

.spacer {
    padding-bottom: 1em;
}

.spacerhalf {
    padding-bottom: 0.5em;
}

.emailmain {
    text-align: left;
    margin-bottom: 1em;
}

.webmain {
    display: flex;
    flex-direction: column;
}

.cell80 {
}

.cell40 {
}

.cell10 {
}

@media screen and (orientation: landscape) {
    .webmain {
        display: flex;
        flex-direction: row;
        gap: 50px;
        justify-content: space-between;
        margin-left: 5%;
        margin-right: 5%;
    }

    .cell80 {
        width: 80%;
    }

    .cell40 {
        width: 40%;
    }

    .cell10 {
        width: 10%;
    }
}

.blurb {
    height: 100%;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
    width: 100%;
}

.image {
    border: 1px solid #A0B2B4;
    border-radius: 6px;
    min-width: 324px;
    overflow: hidden;
    width: 324px;
}

.credit {
    text-align: right;
    font-size: 75%;
    min-width: 324px;
    width: 324px;
}

.styled-button {
    background: #FF97D2;
    border: 0px;
    font-family: sans-serif;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.1) 0px 0px 0px 1px inset, rgba(50, 50, 93, 0.1) 0px 2px 5px 0px, rgba(0, 0, 0, 0.07) 0px 1px 1px 0px;
    color: #182E30;
    cursor: pointer;
    overflow: hidden;
    padding: 1.0rem 3rem;
    transition: transform 0.03s;
}
.styled-button:active {
    transform: scale(0.98);
}

#calendar {
    border: 1px solid #A0B2B4;
    border-radius: 6px;
    min-width: 324px;
    overflow: hidden;
    width: 324px;
}
#calendar.valid {
    outline: none;
}
#calendar.invalid {
    outline: 1px solid red;
}

#calendar-header {
    align-items: center;
    background: #A0B2B4;
    color: #182E30;
    display: flex;
    justify-content: space-between;
    padding: 8px;
}
#calendar-header button {
    background: none;
    border: none;
    color: #182E30;
    cursor: pointer;
}

#calendar-body {
    padding: 8px;
}

#calendar-weekdays {
    display: flex;
    flex-wrap: nowrap;
}
#calendar-weekdays div {
    color: #182E30;
    padding-bottom: 10px;
    text-align: center;
    width: 14.28%;
}

#calendar-dates {
    display: flex;
    flex-wrap: wrap;
}
#calendar-dates div {
    margin: 2px;
    border-radius: 6px;
    padding: 10px 0;
    text-align: center;
    align-items: center;
    width: 40px;
}
#calendar-dates .today {
    border: 1px solid #A0B2B4;
    box-sizing: border-box;
}
#calendar-dates .bookable {
    cursor: pointer;
}
#calendar-dates .bookable:hover {
    background: #FFE0F2;
}
#calendar-dates .not_bookable {
    background: #EEE;
    border-radius: 50%;
    cursor: default;
    color: #BBB;
}
#calendar-dates .this_month {
    color: #182E30;
}
#calendar-dates .not_this_month {
    color: #8DB2BC;
}
#calendar-dates .selected {
    background: #FF97D2;
}

#timesheet {
    border: 1px solid #A0B2B4;
    border-radius: 6px;
    min-width: 324px;
    overflow: hidden;
    width: 324px;
}
#timesheet.valid {
    outline: none;
}
#timesheet.invalid {
    outline: 1px solid red;
}

#timesheet-header {
    background: #A0B2B4;
    color: #182E30;
    display: flex;
    padding: 8px;
}

#timesheet-body {
    padding: 8px;
}

#timesheet-slots {
    display: flex;
    flex-wrap: wrap;
}
#timesheet-slots div {
    margin: 2px;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}
#timesheet-slots .bookable {
    color: #182E30;
}
#timesheet-slots .bookable:hover {
    background: #FFE0F2;
}
#timesheet-slots .not_bookable {
    background: #EEE;
    cursor: default;
    color: #BBB;
}
#timesheet-slots .selected {
    background: #FF97D2;
}

#attendees {
    border: 1px solid #A0B2B4;
    border-radius: 6px;
    min-width: 324px;
    overflow: hidden;
    width: 324px;
}
#attendees.valid {
    outline: none;
}
#attendees.invalid {
    outline: 1px solid red;
}

#attendees-header {
    align-items: center;
    background: #A0B2B4;
    color: #182E30;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

#attendees-rider-number {
    width: 3em;
    border-radius: 6px;
    border: none;
    padding: 8px;
}

#terms {
    border-radius: 6px;
    width: 324px;
}

#booking {
    border-radius: 6px;
    width: 324px;
}
#booking.valid {
    outline: none;
}
#booking.invalid {
    outline: 1px solid red;
}
#booking-price {
    padding: 1.0rem 1rem;
}
#booking-text {
    opacity: 0.6;
}

#confirm {
    border-radius: 6px;
    width: 324px;
}
#confirm-error {
    color: #FF0000;
    font-style: italic;
    padding: 0rem 1rem;
    text-align: right;
}

.footer {
    background-color: #A0B2B4;
    color: white;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    min-height: 2em;
}

.footnotes {
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    font-size: 80%;
}
