
.column-section {
    padding: 1rem;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
}

.column-section > h4,
.custom-section-card > h4,
.filter-blocks label {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.55);
}

.filter-blocks label {
    margin-bottom: 0.25rem;
}

.column-section h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);

    position: relative;
}

div.glass-light:not(.card-member) {
    padding: 15px 10px;
}

.glass-light {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);

    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.45),
            inset 0 1px 1px rgba(255, 255, 255, 0.25);

    position: relative;
}

.glass-light-sidemenu {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);

    border-radius: 16px;

    position: relative;
}

.glass::before,
.glass-light::before,
.glass-light-sidemenu::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.02) 60%
    );

    mix-blend-mode: overlay;
}

.glass::after,
.glass-light::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 -10px 30px rgba(255, 255, 255, 0.08);
}

.glass:hover,
.glass-light:hover {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(170%);
}

.glass--soft {
    background: rgba(30, 41, 59, 0.55);
}

.main-details {
    border: 1px solid #c6c6c6;
    border-radius: 10px;
    background-color: var(--secondary-container-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.header-details {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    margin: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px 10px
}

.custom-section-card {
    padding: 1rem;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: 15px auto;
}

.custom-section-card.list:first-child {
    margin: 15px auto 0 auto;
}

.custom-section-card.list:not(:first-child) {
    margin: 0 auto;
}

.custom-section-card.list:last-child {
    margin-bottom: 15px;
}


.custom-section-card .details-item {
    margin-top: 5px;
    padding-bottom: 5px;
}

.custom-section-card .details-item:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.custom-section-card .csc-title {
    font-weight: 700;
    font-size: 1rem;
}

.custom-section-card .csc-legend {
    color: rgb(255, 255, 255, .65);
    font-style: italic;
    font-size: 0.8rem
}

.filter-blocks {
    padding: 10px;
    margin: 10px 0 15px 0;
    color: #000000;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.image-logo {
    display: block;
    position: absolute;
    top: -75px;
    overflow: hidden;
    left: 35px;
    box-shadow: 2px 2px 10px -1px var(--main-dark-color);
}

.image-logo img {
    width: 200px;
    height: auto;
}

.avatar {
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    width: 100px;
}

.avatar img {
    width: 100px;
    height: auto;
}

.modal {
    color: #ffffff;
}

.modal-header {
    color: #ffffff;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-footer {
    border-top: none;
}

.approval-success {
    color: var(--white-color);
}

.refusal-not-provided {
    color: var(--white-color);
}

.warning-not-filled {
    color: #deab00;
}

.text-muted {
    color: rgb(255, 255, 255, 0.75) !important;
    font-weight: 600;
    font-style: italic;
}

.event-description {
    max-height: 4em;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    position: relative;
}

.event-description::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient( 90deg, transparent, rgba(200, 210, 255, 0.9), transparent );
    transition: opacity 0.2s ease;
}

.event-description.expanded {
    max-height: 100vh;
}

.event-description.expanded::after {
    display: none;
}