.schedule-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.service-card, .calendar-card, .slots-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.service-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-details {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-description {
    color: #6c757d;
}

.calendar-card h3, .slots-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.date-selector {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    gap: 0.8rem;
}

.date-button {
    flex: 0 0 65px;
    padding: 10px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.date-button:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.date-button.selected {
    background-color: #8f10c5ff;
    color: white;
    border-color: #8f10c5ff;
    font-weight: bold;
}

.day-of-week {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.day-number {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.slot-button {
    padding: 12px;
    border: 1px solid #8f10c5ff;
    color: #8f10c5ff;
    background-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.slot-button:hover {
    background-color: #8f10c5ff;
    color: white;
}

#slots-placeholder {
    color: #6c757d;
}

.date-selector::-webkit-scrollbar {
    height: 8px;
}
.date-selector::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.date-selector::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.date-selector::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}