/* Laundry Task Manager Container */
.laundry-task-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.laundry-top-bar {
    margin-bottom: 20px;
}

.laundry-select,
.laundry-date-picker {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.laundry-select {
    width: 300px;
    max-width: 100%;
}

/* Side-by-Side Layout */
.laundry-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* On mobile, stack them instead */
@media (max-width: 768px) {
    .laundry-split-layout {
        grid-template-columns: 1fr;
    }
}

.laundry-panel {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.laundry-panel.alternate-bg {
    background: #f9f9f9;
}

.laundry-panel h3 {
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 8px;
    display: inline-block;
}

/* Inputs and Buttons */
.laundry-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.laundry-input-group.row-align {
    flex-direction: row;
    align-items: center;
}

.laundry-textarea {
    width: 100%;
    min-height: 50px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: none;
    font-family: inherit;
}

.laundry-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.laundry-btn.primary {
    background: #0073aa;
    color: white;
}
.laundry-btn.primary:hover {
    background: #005177;
}

.laundry-btn.secondary {
    background: #e2e4e7;
    color: #333;
}
.laundry-btn.secondary:hover {
    background: #c3c4c7;
}

/* Tables */
.laundry-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: white;
}

.laundry-table th, 
.laundry-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

.laundry-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.laundry-task-content {
    white-space: pre-wrap;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Status Dropdowns in Table */
.task-status-dropdown {
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 13px;
    transition: background-color 0.3s;
}

.laundry-empty-state {
    text-align: center;
    color: #777;
    font-style: italic;
    padding: 20px !important;
}

/* Date Range Styling */
.history-range-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.history-range-group .laundry-date-picker {
    margin-bottom: 0;
    flex: 1;
    min-width: 120px;
}

.range-separator {
    font-weight: bold;
    color: #666;
    font-size: 14px;
}