.schedule-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.schedule-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.schedule-form input[type="text"],
.schedule-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.schedule-form input[type="submit"] {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.schedule-form input[type="submit"]:hover {
    background: #005a87;
}
.schedule-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}
.schedule-table th,
.schedule-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.schedule-table th {
    background-color: #f2f2f2;
}