
body {
    width: 100vw;
    height: 100vh;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    visibility: hidden;
}

#branding-display {
    display: flex;
    align-items: end;
    justify-content: end;
    height: 100%;
}

#branding-logo {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

#date-select {
    width: 100%;
    display: block;
    margin-top: 10px;
    font-size: 0.95em;
    background-color: white;
    border: none;
    border-radius: 0.25em;
    padding: 0.6em;
}

#tee-time-display {
    background: #FAFAFA;
    display: none;
    font-family: Poppins, sans-serif;
    max-width: 500px;
    width: 330px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

    #tee-time-display > h2 {
        cursor: pointer;
        color: white;
        position: absolute;
        top: -5px;
        z-index: 999999;
        right: 20px;
    }

#widget-header {
    position: relative;
    background: radial-gradient(circle,rgba(255, 153, 0, 1) 0%, rgba(237, 83, 83, 0.97) 100%);
    color: white;
    padding: 16px;
}

    #widget-header > h2 {
        margin: 0;
        font-size: 1.3em;
        text-align: center;
    }

    #widget-header > p {
        margin: 5px 0 0;
        font-size: 0.95em;
    }

#course-info-display > p:first-child {
    display: block;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0.2em;
}

#course-info-display > p:last-child {
    display: block;
    font-size: 0.95em;
    margin: 0.2em;
}

#tee-time-container {
    padding: 16px;
    background-color: #fff;
    max-height: 237px;
    overflow-y: auto;
}

#course-footer-display {
    color: #666;
    font-size: 0.9em;
    border-bottom: 1px solid #eee;
    background-color: #FFFAFA;
    padding: 24px 8px;
    margin-bottom: 10px;
}

    #course-footer-display > a {
        display: inline-block;
        margin-top: 4px;
        padding: 6px 12px;
        background: black;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        font-size: 0.85em;
        margin-left: 0.75em;
    }

#disclaimer > p {
    margin: 0px;
    font-size: 0.9em;
    color: #666;
}

.info-display {
    background-color: #FFFAFA;
    padding: 8px;
}

.tee-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

    .tee-time-item > div:first-child > div:first-child {
        font-size: 1.2em;
        font-weight: bold;
    }

    .tee-time-item > div:first-child > div:last-child {
        font-size: 0.9em;
        color: #666;
    }

    .tee-time-item > div:last-child {
        text-align: right;
    }

        .tee-time-item > div:last-child > div:first-child {
            font-size: 1.1em;
            font-weight: bold;
            color: #000000;
        }

        .tee-time-item > div:last-child > a:last-child {
            display: inline-block;
            margin-top: 4px;
            padding: 6px 12px;
            background: radial-gradient(circle,rgba(255, 153, 0, 1) 0%, rgba(237, 83, 83, 0.97) 100%);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.85em;
        }

.no-tee-times {
    color: #666;
    text-align: center;
}

@media only screen and (min-device-width : 576px) {
    #branding-logo {
        width: 150px;
        height: 150px;
        cursor: pointer;
    }
}