/* schedule-form.css */

.schedule-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    padding: 24px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.schedule-form label {
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    min-width: 120px;
    align-self: center;
}

.schedule-form select {
    flex: 1 1 180px;
    padding: 10px 14px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 10px;
    background-color: #fefefe;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.schedule-form select:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px #3498dbaa;
    outline: none;
}

.schedule-form input[type="submit"] {
    background-color: #2980b9;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgb(41 128 185 / 0.3);
}

.schedule-form input[type="submit"]:hover {
    background-color: #1f618d;
    box-shadow: 0 6px 12px rgb(31 97 141 / 0.5);
}

.schedule-form input[type="submit"]:active {
    transform: translateY(1px);
}
