/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Oct 15, 2021, 3:16:50 PM
    Author     : bschroeder
*/
body{ font-family:sans-serif; }

#appServices { display: grid; grid-template-columns: auto auto auto; }
#appServices .chkService {}
#datepicker { width:fit-content; }
#timeslots { margin-top:10px; }
#timeslots .timeslot-btn, #appLocation .location-btn {
    display:inline-block;
    border:1px solid #ddd;
    margin:2px;
    padding:2px 5px;
    cursor:pointer;
    user-select:none;
    text-align:center;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
}
#timeslots .timeslot-btn { width:70px; }
#timeslots .timeslot-btn.active, #appLocation .location-btn.active { font-weight:bold; border-color:#000; border-radius:3px; }
#timeslots .label { font-weight:bold; text-decoration:underline; margin-bottom:10px; }
#timeslots .label2 { font-style:italic; }
#appLocation .location-btn { border-radius:5px; float:left; min-height:100px; }
#confirmLocation { width:fit-content; margin:auto; }
#confirmMsg { padding:15px 0; } 

.ui-accordion h3 .selection-summary { font-weight:normal; margin-left:15px; cursor:pointer; display:inline-block; }
.ui-accordion h3 .selection-summary.disabled { cursor:default; color:#ddd; }
.ui-accordion h3 { font-size:13pt; margin:5px 0; }
.ui-accordion-content { padding-top: 10px; }
.ui-datepicker-title { text-align:center; }
.ui-datepicker-prev { float:left; }
.ui-datepicker-next { float:right; }
.ui-datepicker-prev, .ui-datepicker-next{
    cursor:pointer;
    font-weight: bold;
    font-family: monospace;
    font-size: 14pt;
    line-height: 12pt;
    padding: 0 5px;
}

.blockUI.blockMsg { border:none !important; background-color:unset !important; }

table.ui-datepicker-calendar tbody td a.ui-state-active { font-weight:bold; }
table.ui-datepicker-calendar tbody td.ui-datepicker-today { border-radius:3px; border-style:inset; }
table.ui-datepicker-calendar tbody td.ui-datepicker-today a { text-decoration:underline; }
table.ui-datepicker-calendar tbody td.ui-datepicker-current-day { border-color:#000; border-radius:3px; box-shadow:1px 1px 0 #ccc; }
table.ui-datepicker-calendar tbody td.booked-partial { background:linear-gradient(30deg, #ccc 30% 50%, #fff 50%); }
table.ui-datepicker-calendar tbody td.booked-full { background: #ccc; }
table.ui-datepicker-calendar tbody td {
    border: 1px solid #ddd;
    text-align: center;
    color: #aaa;
}
table.ui-datepicker-calendar tbody td a {
    text-decoration: none;
    padding: 3px 8px;
    color: #000;
}


.wizard-button { margin-top:30px; display:inline-block; }
.invalid-icon {
    display:none;
    margin-left: 5px;
    color: orangered;
    font-size: 14pt;
    text-shadow: 1px 1px 0 yellow, -2px -2px 0 yellow;
}

/*** Tablet Styles ***/
@media screen and (max-width: 1024px) {
    body { max-width: 1024px; }

}

/*** Phone Styles ***/
@media screen and (max-width: 768px) {
    body { max-width: 768px; }
    #appServices { grid-template-columns: auto auto; }
    
}