/**
 * Frontend Styles for Outlook Group Calendar
 */

.ogc-calendar-container {
    max-width: 100%;
    margin: 20px 0;
}

.ogc-events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ogc-event-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.ogc-event-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ogc-event-date {
    font-size: 0.9em;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ogc-event-content {
    margin-top: 10px;
}

.ogc-event-title {
    font-size: 1.3em;
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
}

.ogc-event-description {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
}

.ogc-event-location,
.ogc-event-organizer {
    margin: 8px 0;
    font-size: 0.95em;
    color: #666;
}

.ogc-event-location strong,
.ogc-event-organizer strong {
    color: #333;
    margin-right: 5px;
}

.ogc-event-link {
    margin-top: 15px;
}

.ogc-event-link a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0078d4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.ogc-event-link a:hover {
    background-color: #106ebe;
}

.ogc-no-events {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .ogc-event-item {
        padding: 15px;
    }
    
    .ogc-event-title {
        font-size: 1.1em;
    }
    
    .ogc-event-date {
        font-size: 0.85em;
    }
}
