#calendar table {
    margin: 0 auto;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;
}

#calendar.jsCalendar tbody td.closed {
    color: #cacaca;
    background-color: rgba(0, 0, 0, 0.03);
}

#calendar.jsCalendar tbody td.jsCalendar-selected {
    background-color: rgba(244, 67, 54, 0.7);
    color: #FFF;
}

#calendar.jsCalendar tbody td.pickup-only {
    background-color: rgba(255, 193, 7, 0.7);
    color: #FFF;
}

#calendar.jsCalendar tbody td.user-selection {
    background-color: #52C9FF;
    color: #FFF;
}

#calendar.jsCalendar .jsCalendar-title-name {
    text-transform: uppercase;
    font-family: 'Nunito', 'Open Sans', sans-serif;
}

#calendar.jsCalendar tbody td.jsCalendar-current {
    background-color: rgb(129, 212, 250, 0.5);
    color: white;
}

.dress-info h3, .dress-info p, .instructions p {
    margin-left: 10px;
    margin-right: 10px;
}

.dress-info h3 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.dress-info p, .instructions p {
    font-size: 14px;
    color: #616060;
    font-weight: 300;
    letter-spacing: 0.24px;
}

.instructions p.error {
    font-weight: bold;
    color: #F44336;
    margin-bottom: 2em;
}

.instructions p.selected-date {
    font-weight: bold;
}

p.selected-date span {
    border-bottom: 1px solid grey;
    padding: 0.25rem 0.5rem;
    margin: 0.4rem auto;
    display: block;
    max-width: 275px;
}

select {
    display: block;
    width: 100%;
    padding: 0.4rem;
    margin-top: 0.4rem;
    font-size: 0.9rem;
}

.book-button {
    text-align: center;
}

.book-button a {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    text-decoration: none;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    font-size: 14px;
    outline: 0;
    border: none;
    border-radius: 2px;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    background-color: #4CAF50 !important;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

p.radio-options {
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.radiowrapper {
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    margin-top: 0;
    flex: 1;
}

/* these make browser error messages (eg the required prompt)
   actually appear */
.radiowrapper input:not(.browser-default) {
    display: block;
    position: absolute;
    top: 30px;
    height: 1px;
    width: 1px;
    padding: 0;
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    border: 0px solid transparent;
    user-select: none;
    z-index: -2;
    outline: none;
}

.radiowrapper .radio-button {
    border-radius: 3px;
    border: 1px solid black;
    display: block;
    padding: 8px 18px;
    transition-duration: 0.3s;
    min-width: 70px;
}

.radiowrapper:hover .radio-button, .radiowrapper:focus .radio-button, .radiowrapper:active .radio-button {
    background-color: #FCFCFC;
}

.radiowrapper:focus .radio-button, .radiowrapper input:focus ~ .radio-button {
    outline: #2196F3 auto 5px;
    outline: -webkit-focus-ring-color auto 5px;
}

.radiowrapper input:checked ~ .radio-button {
    background-color: #52C9FF;
    color: white;
}