body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
}

h1 {
    text-align: center;
    color: #333;
}

#doctor-schedules {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.schedule {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.schedule h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.project {
    margin-bottom: 15px;
}

.project h3 {
    margin: 0;
    font-size: 1em;
    color: #34495e;
}

.project p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #555;
}
#doctor-selector {
    text-align: center;
    margin: 20px auto;
}

#doctor-dropdown {
    font-size: 16px;
    padding: 10px;
    margin-right: 10px;
}

#go-to-schedule {
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#go-to-schedule:hover {
    background-color: #34495e;
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    text-align: left;
    background-color: #fff;
}

.schedule-table th, .schedule-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.schedule-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.schedule-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.details-button {
    padding: 5px 10px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.details-button:hover {
    background-color: #34495e;
}

.details-row {
    background-color: #f4f4f4;
    font-size: 0.9em;
}
