.wh-admin-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}

.wh-mode-selector {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.wh-mode-toggle {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.wh-mode-toggle input[type="radio"] {
    display: none;
}

.wh-mode-toggle label {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    user-select: none;
}

.wh-mode-toggle input[type="radio"]:checked + label {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.wh-mode-toggle label:hover {
    border-color: #adb5bd;
}

.wh-admin-day {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.15s ease;
}

.wh-admin-day:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.wh-admin-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wh-admin-day-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    min-width: 140px;
}

.wh-admin-day-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wh-admin-day-actions .btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

.wh-admin-time-row {
    margin-bottom: 1rem;
}

.wh-admin-time-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.wh-time-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.wh-time-inputs .form-control {
    width: 100px;
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wh-time-inputs .form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.wh-time-separator {
    color: #6c757d;
    font-weight: 500;
}

.wh-admin-day-status {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.wh-admin-day-status .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.6em;
}

.wh-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wh-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    gap: 1rem;
    flex-wrap: wrap;
}

.wh-item:last-child {
    border-bottom: none;
}

.wh-item.wh-today {
    background-color: #f8f9fa;
    border-left: 3px solid #007bff;
}

.wh-days {
    font-weight: 600;
    color: #212529;
    min-width: 120px;
    flex-shrink: 0;
}

.wh-time {
    color: #495057;
    font-weight: 500;
}

.wh-break {
    font-size: 0.9em;
    color: #6c757d;
    font-style: italic;
}

.wh-status {
    font-size: 0.9em;
    padding: 0.25em 0.5em;
    border-radius: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.wh-status[data-status="open"] {
    background-color: #d4edda;
    color: #155724;
}

.wh-status[data-status="closed"] {
    background-color: #f8d7da;
    color: #721c24;
}

.wh-status[data-status="break"] {
    background-color: #fff3cd;
    color: #856404;
}

.wh-teaser {
    display: inline-block;
    padding: 0.5em 0.75em;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
}

.wh-teaser.wh-open {
    background-color: #d4edda;
    color: #155724;
}

.wh-teaser.wh-closed {
    background-color: #f8d7da;
    color: #721c24;
}

.wh-teaser.wh-break {
    background-color: #fff3cd;
    color: #856404;
}

@media (max-width: 768px) {
    .wh-admin-day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wh-admin-day-actions {
        width: 100%;
    }
    
    .wh-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .wh-status {
        margin-left: 0;
    }
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

.wh-mode-weekdays,
.wh-mode-odd_even {
    transition: opacity 0.3s ease, transform 0.3s ease;
}