/**
 * Agenda Notes - Simple List Style
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.agenda-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    max-width: 800px;
}

.agenda-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.agenda-list {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.agenda-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.agenda-item-date {
    font-weight: 500;
    color: #1a1a1a;
    min-width: 90px;
}

.agenda-item-bullet {
    color: #9ca3af;
}

.agenda-item-title {
    font-weight: 600;
    color: #1a1a1a;
}

.agenda-item-separator {
    color: #9ca3af;
}

.agenda-item-location {
    color: #6b7280;
}

.agenda-no-notes {
    color: #6b7280;
    font-style: italic;
    padding: 1rem 0;
}

@media (max-width: 600px) {
    .agenda-item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem 0.5rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 0.875rem;
    }

    .agenda-item-date {
        font-size: 0.875rem;
        min-width: auto;
    }

    .agenda-item-title {
        font-size: 0.875rem;
    }

    .agenda-item-location {
        font-size: 0.875rem;
    }
}