
/* --- Popup / Modal Bakgrund --- */
.popup-condition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px); /* Ger en modern, suddig bakgrundseffekt */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;

    /* --- Själva Popup-fönstret --- */
    .modal-content {
        background-color: #ffffff;
        width: 90%;
        max-width: 610px;
        padding: 32px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        position: relative;
        transform: translateY(-20px);
        transition: transform 0.3s ease;
        max-height: 85vh;
        overflow-y: auto; /* Gör fönstret skrollbart på mindre skärmar */
    }

        
    /* Rubrik */
    .modal-content h2 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 20px;
        color: #111;
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
    }

    /* Stängningsknapp (Kryss) */
    .close-x {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 22px;
        color: #aaa;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        transition: color 0.2s;

        background: #0000000f;
        border-ra: 33px;
        border-radius: 33px;
        display: flex;
        /* align-items: center; */
        justify-content: center;
        width: 27px;
        aspect-ratio: 1 / 1;
        color: black;
        line-height: 25px;
    }

    .close-x:hover {
        color: #333;
    }

    /* --- Innehållslista --- */
    .condition-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .condition-list li {
        margin-bottom: 27px;
        line-height: 1.5;
    }

    .condition-list li:last-child {
        margin-bottom: 0;
    }

    .condition-list strong {
        display: block;
        font-size: 15px;
        color: #111;
        margin-bottom: 6px;
    }

    .condition-list p {
        margin: 0;
        color: #64748b;
        font-size: 13.5px;
    }

    /* --- Stängknapp längst ner --- */
    .close-btn-container {
        margin-top: 25px;
        text-align: right;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .close-btn {
        background-color: #f1f3f5;
        color: #495057;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .close-btn:hover {
        background-color: #e9ecef;
    }
}

/* Visa modalen */
.popup-condition.active {
    opacity: 1;
    pointer-events: auto;
}



.popup-condition.active .modal-content {
    transform: translateY(0);
}
