    .weekly-schedule-form {
        background: #fff;
        border: 1px solid #ddd;
        padding: 20px;
        border-radius: 10px;
        max-width: 700px;
        margin: 25px auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        font-family: Arial;
    }
    .schedule-title {
        margin-bottom: 5px;
        font-size: 22px;
        color: #333;
        text-align: center;
    }
    .schedule-info {
        text-align: center;
        color: #666;
        margin-bottom: 15px;
    }
    .schedule-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .schedule-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 60px;
        gap: 10px;
        align-items: center;
        background: #fafafa;
        padding: 8px 10px;
        border-radius: 8px;
    }
    .schedule-day {
        font-weight: bold;
        color: #222;
    }
    .schedule-field input[type=time] {
        width: 100%;
        padding: 6px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
    .schedule-off input[type=checkbox] {
        transform: scale(1.2);
        margin-right: 6px;
    }
    .schedule-btn {
        width: 100%;
        background: #0073aa;
        border: none;
        color: white;
        padding: 12px;
        font-size: 16px;
        margin-top: 15px;
        border-radius: 8px;
        cursor: pointer;
    }
    .schedule-btn:hover {
        background: #005f8a;
    }
