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

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.loader-dots:after {
    content: "..."; /* Du kan även göra en rörlig CSS-animation här */
}

.btn-secondary {
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
}
