.szv-selector-wrap {
margin: 20px 0;
padding: 20px;
background: #fafaf8;
border: 1px solid #e8e0d0;
border-radius: 10px;
}
.szv-field {
margin-bottom: 20px;
}
.szv-field label {
display: block;
font-weight: 700;
font-size: 1em;
margin-bottom: 10px;
color: #333;
} #szv-date-picker {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
}
.szv-cal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
background: #2c5f2e;
color: white;
}
.szv-cal-header h4 {
margin: 0;
font-size: 1em;
color: white;
}
.szv-cal-nav-btn {
background: none;
border: none;
color: white;
font-size: 1.2em;
cursor: pointer;
padding: 4px 10px;
border-radius: 4px;
transition: background 0.2s;
}
.szv-cal-nav-btn:hover {
background: rgba(255,255,255,0.2);
}
.szv-cal-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1px;
background: #eee;
}
.szv-cal-day-head {
background: #f5f5f5;
text-align: center;
padding: 8px 4px;
font-size: 0.75em;
font-weight: 700;
color: #888;
text-transform: uppercase;
}
.szv-cal-day {
background: white;
text-align: center;
padding: 10px 4px;
font-size: 0.9em;
cursor: default;
color: #ccc !important;
min-height: 48px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2px;
font-weight: 400 !important;
}
.szv-cal-day.szv-cal-available {
background-color: #2c5f2e !important;
color: #ffffff !important;
font-weight: 800 !important;
cursor: pointer !important;
border: none !important;
border-radius: 6px;
}
.szv-cal-day.szv-cal-available:hover {
background-color: #1d4220 !important;
}
.szv-cal-day.szv-cal-selected {
background-color: #e67e22 !important;
color: #ffffff !important;
font-weight: 800 !important;
}
.szv-cal-day.szv-cal-full {
color: #ddd !important;
text-decoration: line-through;
background: #fafafa;
}
.szv-cal-spots {
font-size: 0.65em;
color: #e67e22;
font-weight: 600;
}
.szv-cal-day.szv-cal-selected .szv-cal-spots {
color: rgba(255,255,255,0.8);
} .szv-instructions {
font-size: 0.88em;
color: #666;
margin: 0 0 10px;
line-height: 1.4;
}
.szv-instructions strong {
color: #2c5f2e;
}
.szv-selected-label {
margin-top: 10px;
font-size: 0.9em;
color: #666;
font-style: italic;
} .szv-persons-control {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 8px;
}
.szv-qty-btn {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid #2c5f2e;
background: white;
color: #2c5f2e;
font-size: 1.2em;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.15s;
line-height: 1;
}
.szv-qty-btn:hover {
background: #2c5f2e;
color: white;
}
.szv-qty-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
#szv-persons-count {
font-size: 1.4em;
font-weight: 700;
min-width: 30px;
text-align: center;
color: #333;
}
.szv-availability {
font-size: 0.85em;
color: #e67e22;
margin: 0;
} #szv-time-options {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.szv-time-btn {
border: 2px solid #2c5f2e;
background: white;
color: #2c5f2e;
border-radius: 6px;
padding: 10px 16px;
font-size: 0.9em;
font-weight: 600;
cursor: pointer;
transition: all 0.15s;
}
.szv-time-btn:hover {
background: #f0fff0;
}
.szv-time-btn.szv-time-btn-selected {
background: #2c5f2e;
color: white;
} .szv-no-dates {
margin: 16px 0;
padding: 14px 18px;
background: #fff8e1;
border-left: 4px solid #f0a500;
border-radius: 4px;
color: #555;
}