﻿.shift-rotation {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shift-selectors {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.shift-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: 600;
    color: #2c3e50;
}

.shift-dropdown {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
    font-size: 15px;
    transition: border-color 0.3s;
}

    .shift-dropdown:focus {
        border-color: #3498db;
        outline: none;
        box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    }

.shift-detail {
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    color: #2c3e50;
}

.shift-header {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.shift-time {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #34495e;
}

.shift-employee {
    font-style: italic;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.remarks-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.remarks-input {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    min-height: 100px;
    font-size: 15px;
    resize: vertical;
    transition: border-color 0.3s;
}

    .remarks-input:focus {
        border-color: #3498db;
        outline: none;
        box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    }

/* Responsive layout */
@media (max-width: 768px) {
    .shift-selectors {
        flex-direction: column;
    }
}
