﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@300;500&family=Roboto&family=Yeseva+One&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.nav {
    background-color: transparent;
    transition: 0.3s ease-in;
}

.scroll {
    background-color: darkgrey;
}

p {
    font-family: 'Raleway', sans-serif;
}

.site-background {
    @apply bg-off-white;
}

.logo {
    font-family: 'Roboto', sans-serif;
}

.text {
    font-family: 'Roboto', sans-serif;
}

.hero-text {
    font-family: 'Yeseva One', cursive;
    color: #1D3A19;
}

.navbar {
    font-family: 'Raleway', sans-serif;
}

.tertiary-color-background {
    background-color: #275320;
}

.mobile-menu-drop-shadow {
    box-shadow: inset 1px 4px 9px -6px;
}

.book-date {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.book-date-disabled {
    color: grey;
    background-color: #e8e8e8;
    border-radius: 10%;
}
.book-date-disabled:hover {
    cursor: not-allowed;
}

.book-date-selected {
    color: white;
    background-color: #99d325;
    border-radius: 10%;
}

    .book-date-selected:hover {
        cursor: pointer;
    }

.book-time {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    cursor:pointer;
}