body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f9;
    color: #333;
}

.appointment-section {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
    background: #9147064e;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.working-days {
    flex: 1;
    margin-right: 20px;
    margin-left: 50px;
}

.working-days h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}


.appointment-form-wrapper {
    flex: 2;
}

.appointment-form-wrapper form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: inline-flexbox;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
    font-weight: normal;
}

input[type="date"],
input[type="time"],
select {
    width: 100%;
    padding: 5px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="date"]:focus,
input[type="time"]:focus,
select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    padding: 15px 20px;
    font-size: 1.2em;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

button:active {
    background-color: #1e7e34;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .appointment-section {
        flex-direction: column;
    }
    
    .working-days {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .appointment-form-wrapper {
        flex: none;
    }

    label {
        font-size: 1em;
    }

    button {
        font-size: 1em;
        padding: 12px 15px;
    }
}
