113 lines
1.6 KiB
CSS
113 lines
1.6 KiB
CSS
.full-width {
|
|
width: 100%;
|
|
}
|
|
.form-container {
|
|
padding: 40px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-top: 20px;
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.checkbox-group {
|
|
margin: 15px 0;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.time-fields {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.hour-fields {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.time-field {
|
|
flex: 1;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
padding: 1.5em;
|
|
}
|
|
|
|
.custom-text {
|
|
font-style: italic;
|
|
font-size: 0.875rem;
|
|
color: #666;
|
|
margin: 4px 0 12px;
|
|
}
|
|
|
|
.weekday-toggle-group {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin: 40px 0 40px 0;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.weekday-toggle {
|
|
flex: 1 1 calc(14.28% - 10px);
|
|
padding: 10px 0;
|
|
border-radius: 999px;
|
|
border: 1px solid #ccc;
|
|
background-color: #f5f5f5;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
transition: all 0.2s ease;
|
|
min-width: 40px;
|
|
}
|
|
|
|
.weekday-toggle.selected {
|
|
background-color: #1976d2;
|
|
color: white;
|
|
border-color: #1976d2;
|
|
}
|
|
|
|
|
|
.availability-summary {
|
|
background-color: #e3f2fd;
|
|
border-left: 4px solid #2196f3;
|
|
padding: 12px 16px;
|
|
margin-top: 16px;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.summary-text {
|
|
color: #0d47a1;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.unavailability-summary {
|
|
background-color: #ffebee;
|
|
border-left: 4px solid #d32f2f;
|
|
padding: 12px 16px;
|
|
margin-top: 16px;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.summary-text {
|
|
color: #b71c1c;
|
|
line-height: 1.4;
|
|
}
|