.tbk-honeypot-field {
position: absolute;
left: -9999px;
top: -9999px;
height: 0;
overflow: hidden;
}
.tbk-calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 4px;
min-height: 240px;
margin-top: 10px;
}
.tbk-day {
aspect-ratio: 1 / 1;
border: 1px solid #d6ddc6;
border-radius: 6px;
background: #fff;
cursor: pointer;
font-size: 13px;
}
.tbk-day:hover:not(:disabled) {
border-color: #9cac6c;
}
.tbk-day-empty {
border: none;
background: transparent;
}
.tbk-day-disabled {
opacity: 0.3;
cursor: default;
}
.tbk-day-selected {
background: #293d2d;
border-color: #293d2d;
color: #fff;
}
.tbk-slots {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 14px;
min-height: 40px;
}
.tbk-slot-selected {
background: #293d2d !important;
border-color: #293d2d !important;
color: #fff !important;
}
.tbk-muted {
color: #5a6b52;
font-size: 13px;
}
.tbk-form-message {
margin: 12px 0;
font-size: 14px;
}
.tbk-form-success {
color: #2f6b2f;
}
.tbk-form-error {
color: #b91c1c;
}
button[data-tbk-submit].tbk-loading {
opacity: 0.6;
pointer-events: none;
}
