.nts040-schedule-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nts040-schedule-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.nts040-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.nts040-table th, .nts040-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
}
.nts040-table th {
    background: #f5f5f5;
}
.nts040-btn {
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    margin: 0 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background 0.2s;
}
.nts040-btn:hover {
    background: #005a87;
}
.nts040-btn.secondary {
    background: #888;
}
.nts040-btn.secondary:hover {
    background: #555;
}
label {
    margin-right: 10px;
    font-weight: bold;
}
select {
    margin-right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
form {
    text-align: center;
}
@media (max-width: 700px) {
    .nts040-schedule-container {
        max-width: 98vw;
        padding: 10px;
    }
    .nts040-table th, .nts040-table td {
        padding: 6px;
        font-size: 12px;
    }
    .nts040-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}