body{
    font-family: Arial, sans-serif;
    background:#f5f5f5;
    padding:10px;
    font-size:13px;
}

.container{
    width:420px;
    background:#fff;
    border:1px solid #ccc;
    padding:10px;
}

/* CALENDAR */

#datepicker{
    margin-bottom:10px;
}

.ui-datepicker{
    width:100%;
    font-size:13px;
}

.ui-datepicker td a{
    text-align:center;
    padding:4px;
}

/* TIME SLOTS */

.time-slots{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:3px;
    margin-top:10px;
}

.time-slot{
    padding:8px 2px;
    text-align:center;
    border:1px dotted #ccc;
    background:#fff;
    color:#2d6db5;
    cursor:pointer;
    font-size:12px;
}

.time-slot:hover{
    background:#e6f0fb;
}

.time-slot.selected{
    background:#2d6db5;
    color:#fff;
    font-weight:bold;
}

/* MESSAGE */

.message{
    margin-top:10px;
    padding:8px;
    background:#fff4d6;
    border:1px solid #e2c276;
    display:none;
    font-size:12px;
}

/* DISABLE */

.disabled-section{
    opacity:0.5;
    pointer-events:none;
}

/* FORM */

.heading{
    color:green;
    font-size:16px;
    margin-top:15px;
    margin-bottom:6px;
}

.note{
    margin-bottom:10px;
    font-size:12px;
}

.form-row{
    display:flex;
    align-items:center;
    margin-bottom:8px;
}

.form-row label{
    width:100px;
    font-size:13px;
    font-weight:bold;
}

.form-row input{
    width:240px;
    height:26px;
    font-size:12px;
    padding:3px;
}

textarea{
    width:100%;
    height:60px;
    resize:none;
    font-size:12px;
    padding:5px;
}

.overview{
    margin-top:15px;
}

.overview h3{
    color:green;
    font-size:15px;
}

.overview-table{
    margin-top:6px;
}

.overview-table div{
    margin-bottom:5px;
    font-size:12px;
}

.overview-label{
    display:inline-block;
    width:90px;
    color:#777;
}

.buttons{
    margin-top:15px;
    display:flex;
    justify-content:space-between;
}

button{
    padding:5px 12px;
    font-size:13px;
    cursor:pointer;
}

.readonly-field{
    background:#efefef;
}

.error {
    color: red;
    font-size: 14px;
	margin-bottom: 4px;
	padding-left:100px;
}