/* COSMO Progressive Disclosure CSS */
/* Elegant and minimal disclosure system */

.disclosure-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.disclosure-header {
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(92, 77, 255, 0.1);
    border: 1px solid rgba(92, 77, 255, 0.3);
    border-radius: 8px;
    color: #5C4DFF;
    font-weight: 500;
    transition: all 0.2s ease;
}

.disclosure-header:hover {
    background: rgba(92, 77, 255, 0.2);
    border-color: rgba(92, 77, 255, 0.5);
}

.disclosure-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    border-left: 3px solid #5C4DFF;
    margin-top: 4px;
}

.disclosure-content.expanded {
    max-height: 500px;
    padding: 16px;
}

.disclosure-arrow {
    float: right;
    transition: transform 0.2s ease;
}

.disclosure-arrow.rotated {
    transform: rotate(90deg);
}
