﻿html, body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 9pt;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    background-color: powderblue;
}

.cal-panel-fixed {
    position: fixed;
    padding: 0px;
    margin: 0px;
    vertical-align: top;
    height: auto;
    /*width: calc(100% - 260px - 220px);*/
    width: calc(100% - 260px);
    overflow-y: scroll;
    z-index: 1;
}

.cal-panel {
    position: fixed;
    top: 0px;
    padding: 0px;
    margin: 0px;
    vertical-align: top;
    height: 100%;
    /*width: calc(100% - 260px - 220px);*/
    width: calc(100% - 260px);
    overflow-y: scroll;
    z-index: 0;
}

.cal-table {
    table-layout: fixed;
    width: 100%;
    padding-right: 0;
    margin: 0;
    border-collapse: collapse;
    border: 1px solid black;
    overflow-y: scroll;
}

th {
    padding: 0px;
    margin: 0px;
    background: darkslategray;
    font-size: 11pt;
    text-align: center;
    border: 1px solid white;
    color: white;
    width: auto;
}

tr {
    height: 10px;
    max-height: 10px;
    width: auto;
    text-align: center;
}

td {
    padding: 0px;
    margin: 0px;
    border-bottom: 1px dotted black;
    height: 10px;
    max-height: 10px;
    vertical-align: top;
    text-align: center;
    width: auto;
}

.cal-table-tr {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    vertical-align: top;
}

.cal-time-tr {
    padding: 0;
    margin: 0;
    height: 21px;
    width: 50px;
}

.cal-time-th {
    padding: 0;
    margin: 0;
    background: darkslategray;
    border: 1px black solid;
    font-size: 10pt;
    text-align: center;
    color: white;
    height: 20px;
    max-height: 20px;
    width: 50px;
    max-width: 50px;
    cursor: default;
}

.cal-time-td {
    padding: 0;
    margin: 0;
    height: 21px;
    width: 50px;
    max-width: 50px;
    font-size: 10pt;
    text-align: center;
    border-left: 1px solid black;
    background-color: #FFC08F;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-tr {
    padding: 0;
    margin: 0;
    height: 10px;
    text-align: center;
}

.cal-th {
    padding: 0;
    margin: 0;
    background: darkslategray;
    border: 1px solid black;
    font-size: 11pt;
    text-align: center;
    color: white;
    height: 20px;
    max-height: 20px;
    width: auto;
    cursor: default;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-td {
    padding: 0;
    margin: 0;
    font-size: 5pt;
    height: 10px;
    max-height: 10px;
    width: auto;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.solid-top-border {
    border-top: 1px solid red;
    overflow: hidden;
}

.dotted-top-border {
    border-top: 1px dotted black;
    overflow: hidden;
}

.appt-duration {
    border-left: 1px solid black;
    font-size: 10pt;
}

/* To set ellipses: https://www.w3schools.com/cssref/css3_pr_text-overflow.php */
.appt-standard {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 10pt;
    font-weight: normal;
    border-left: 1px solid black;
    background-color: cyan;
    color: black;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appt-confirmed {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 10pt;
    font-weight: normal;
    border-left: 1px solid black;
    background-color: lightgreen;
    color: black;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appt-block {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 9pt;
    border-left: 1px solid black;
    background-color: darkslategray;
    color: white;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: clip;
}

.appt-custom-block {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 9pt;
    border-left: 1px solid black;
    background-color: yellow;
    color: black;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: clip;
}

.appt-none {
    margin: 0;
    padding: 0;
    height: 10px;
    border-left: 1px solid black;
    background-color: snow;
    color: black;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}

.scroll-table {
    table-layout: fixed;
    overflow-y: scroll;
}

.location-info {
    height: 200px;
    width: 180px;
    text-align: center;
    font-size: 9pt;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: darkslategray;
}

.refresh-button {
    border: 1px solid cornflowerblue;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 0px 0px 0px 0px;
    height: 24px;
    width: 24px;
    margin-left: 15px;
    margin-bottom: 3px;
    box-shadow: 2px 2px #224422;
    display: inline-block;
}

    .refresh-button:hover {
        padding-left: 0px;
        height: 24px;
        width: 24px;
        font-weight: normal;
        margin-bottom: 3px;
        border: 2px solid fuchsia;
        color: #772277;
    }

.show-appt-panel-button {
    border: 2px solid cornflowerblue;
    background-color: white;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 8px;
    height: 24px;
    width: 24px;
    box-shadow: 2px 2px #224422;
    display: inline-block;
}

    .show-appt-panel-button:hover {
        border: 2px solid white;
        box-shadow: 2px 2px #0000ff;
        color: #772277;
    }

.ghl-button {
    border: 1px solid gold;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/ghl_icon.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .ghl-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid orange;
        color: darkgoldenrod;
    }

.nex-health-button {
    border: 1px solid cyan;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/nexhealth_icon.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .nex-health-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid cyan;
        color: darkcyan;
    }

.data-viewer-button {
    border: 1px solid orangered;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/data.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .data-viewer-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid maroon;
        color: orangered;
    }

.help-file-button {
    border: 1px solid blue;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/helpfile.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .help-file-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid blue;
        color: blue;
    }

.batch-admin-button {
    border: 1px solid darkgray;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/bat.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #222222;
    display: inline-block;
}

    .batch-admin-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid darkgray;
        color: dimgray;
    }

.bug-sheet-button {
    border: 1px solid darkgreen;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/bug-sheet.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .bug-sheet-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid limegreen;
        color: lime;
    }

.bug-viewer-button {
    border: 1px solid darkgreen;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/bug.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .bug-viewer-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid limegreen;
        color: lime;
    }

.download-all-appointments-button {
    border: 1px solid purple;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/download-purple.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .download-all-appointments-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid purple;
        color: purple;
    }

.download-clients-button {
    border: 1px solid blue;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 5px;
    height: 36px;
    width: 200px;
    background: url('Images/download-blue.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #222244;
    display: inline-block;
}

    .download-clients-button:hover {
        padding: 5px 5px 5px 5px;
        font-weight: bold;
        border: 2px solid blue;
        color: blue;
    }

.download-operatories-button {
    border: 1px solid orangered;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 15px;
    height: 36px;
    width: 200px;
    background: url('Images/download-orange.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442222;
    display: inline-block;
}

    .download-operatories-button:hover {
        padding: 5px 5px 5px 15px;
        font-weight: bold;
        border: 2px solid orangered;
        color: orangered;
    }

.download-patients-button {
    border: 1px solid darkgreen;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 15px;
    height: 36px;
    width: 200px;
    background: url('Images/download-green.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442222;
    display: inline-block;
}
    .download-patients-button:hover {
        padding: 5px 5px 5px 15px;
        font-weight: bold;
        border: 2px solid darkgreen;
        color: forestgreen;
    }

.download-patient-updates-button {
    border: 1px solid orangered;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 15px;
    height: 36px;
    width: 200px;
    background: url('Images/download-orange.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442222;
    display: inline-block;
}
    .download-patient-updates-button:hover {
        padding: 5px 5px 5px 15px;
        font-weight: bold;
        border: 2px solid orangered;
        color: orangered;
    }

.create-all-availabilities-button {
    border: 1px solid red;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/download-red-cross.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #440000;
    display: inline-block;
}

    .create-all-availabilities-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid red;
        color: red;
    }

.admin-report-button {
    border: 1px solid skyblue;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/api.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .admin-report-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid lightskyblue;
        color: dodgerblue;
    }

.settings-button {
    border: 1px solid skyblue;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 5px 5px 20px;
    height: 36px;
    width: 200px;
    background: url('Images/settings.png') left center no-repeat;
    background-color: white;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #442244;
    display: inline-block;
}

    .settings-button:hover {
        padding: 5px 5px 5px 20px;
        font-weight: bold;
        border: 2px solid lightskyblue;
        color: dodgerblue;
    }

.download-appt-button {
    border: 1px solid #563d7c;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 5px 50px 5px 50px;
    height: 24px;
    width: 24px;
    margin-top: 10px;
    margin-left: 5px;
    box-shadow: 2px 2px #224422;
    display: inline-block;
}

    .download-appt-button:hover {
        padding: 5px 50px 5px 50px;
        height: 25px;
        width: 25px;
        font-weight: bold;
        border: 2px solid lime;
        color: #227722;
    }

.manage-patients-button {
    border: 1px solid #550044;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 0px 0px 0px 0px;
    height: 24px;
    width: 24px;
    margin-left: 5px;
    box-shadow: 2px 2px #440033;
}

    .manage-patients-button:hover {
        padding-left: 1px;
        height: 25px;
        width: 25px;
        font-weight: bold;
        border: 2px solid deepskyblue;
        color: #772277;
    }

.refresh-token-button {
    border: 1px solid cornflowerblue;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 0px 0px 0px 0px;
    height: 24px;
    width: 24px;
    margin-left: 15px;
    margin-bottom: 3px;
    box-shadow: 2px 2px #224422;
    display: inline-block;
}

    .refresh-token-button:hover {
        padding-left: 0px;
        height: 24px;
        width: 24px;
        font-weight: normal;
        margin-bottom: 3px;
        border: 2px solid fuchsia;
        color: #772277;
    }

.submit-button {
    border: 1px solid #550044;
    border-radius: 5px;
    color: black;
    font-size: 9pt;
    padding: 0px 0px 0px 0px;
    height: 24px;
    width: 80px;
    margin-left: 5px;
    box-shadow: 2px 2px #440033;
}

    .submit-button:hover {
        padding-left: 1px;
        height: 24px;
        width: 81px;
        font-weight: bold;
        border: 2px solid deepskyblue;
        color: #772277;
    }

.location-info {
    font-size: 10pt;
    color: blue;
}

.textbox {
    font-family: 'Segoe UI', sans-serif;
    font-size: 9pt;
    width: 100px;
    display: inline-block;
    overflow: clip;
}

.patient-list-box {
    display: inline-block;
    font-size: 9pt;
    width: 250px;
    margin: 10px;
}

.patient-info-div {
    display: inline-block;
    font-size: 9pt;
    border: 1px solid darkslateblue;
    width: 250px;
    height: 120px;
    overflow: hidden;
}

.appt-info-div {
    display: inline-block;
    font-size: 9pt;
    border: 1px solid darkslateblue;
    width: 520px;
    height: 120px;
    overflow: hidden;
}

.select-patient-label {
    background-color: darkslateblue;
    font-size: 8pt;
    color: white;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 20px;
    padding-right: 20px;
}

.data-group {
    width: 95%;
    margin: 5pt;
    font-size: 8pt;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
}

.data-label {
    font-size: 8pt;
    vertical-align: top;
    text-align: right;
    font-weight: bold;
    color: black;
    float: left;
    display: inline-block;
    overflow: hidden;
}

.provider-list-box {
    display: inline-block;
    font-size: 9pt;
    width: 140px;
    margin: 10px;
}

.button-group {
    width: 100%;
    padding: 5px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 8pt;
    vertical-align: middle;
    overflow: visible;
    white-space: nowrap;
}
