

.calendar-container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.calendar-header h1 {
    color: #4285F4; /* Bleu Google */
    margin-bottom: 5px;
    font-weight: 600;
}

.calendar-header p {
    color: #666;
    font-size: 0.9em;
}

.day-section {
    margin-bottom: 30px;
}

.day-section h2 {
    color: #333;
    border-left: 5px solid #34A853; /* Vert Google */
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-card {
    background-color: #ffffff;
    border-left: 4px solid #FBC02D; /* Jaune/Orange Google */
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-time {
    font-weight: bold;
    color: #4285F4;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.event-title {
    margin: 0;
    font-size: 1em;
    color: #333;
}

.event-location {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

.no-events {
    color: #999;
    font-style: italic;
    padding-left: 15px;
}

.loading-message {
    text-align: center;
    color: #999;
}