@charset "UTF-8";
/* CSS Document */

/* ── Event Update preview/expand ── */
.viewEventUpdateDiv {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}

.viewEventUpdateDiv.expanded {
    max-height: 4000px;
}

/* Normalize rich HTML content (p tags etc.) so expanded state
   matches the compact preview — no sudden margin/size jump */
.viewEventUpdateDiv p,
.viewEventUpdateDiv ul,
.viewEventUpdateDiv ol {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin-top: 0;
    margin-bottom: 8px;
}

.viewEventUpdateDiv p:last-child,
.viewEventUpdateDiv ul:last-child,
.viewEventUpdateDiv ol:last-child {
    margin-bottom: 0;
}


/* ── Event Format "How it Works" toggle ── */
.format-desc-toggle {
    font-size: 10px;
    font-weight: 600;
    color: #5a7a9b;
    text-decoration: none;
    margin-left: 8px;
    white-space: nowrap;
    vertical-align: middle;
    letter-spacing: 0;
    text-transform: none;
}

.format-desc-toggle:hover,
.format-desc-toggle:focus {
    color: #3d5a78;
    text-decoration: underline;
}

/* Chevron flips when the collapse is open.
   Bootstrap 3 sets aria-expanded="true" on the trigger element automatically. */
.format-desc-toggle[aria-expanded="true"] .format-desc-chevron {
    display: inline-block;
    transform: rotate(180deg);
}

.format-desc-chevron {
    transition: transform 0.2s ease;
}
