.modal {
    display: none; 
    position: fixed; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent sort */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 10% fra toppen og centreret */
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: sans-serif;
}

.close-btn { 
    margin-top: 10px; width: 33%; padding: 10px; 
    background: #007bff; color: white; border: none; 
    border-radius: 5px; cursor: pointer;
}

.slider-actions {
    text-align: center;
    margin-top: 1rem;
}


.slider-box {
    width: 100%;
}

.slider-container {
    background: white;
    padding: 8px;
    font-size: 14px;
}

.slider-group {
    margin-bottom: 15px;
}

.slider {
    width: 100%;
    cursor: pointer;
}
