#scp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000e6; /* Σκούρο overlay με μικρή διαφάνεια */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#scp-popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 400px;
}
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.scp-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.scp-buttons a {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    flex-grow: 1;
    margin: 0 5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

#scp-continue {
    background: green;
}

#scp-continue:hover {
    background: darkgreen;
    color: white !important;
}

#scp-exit {
    background: red;
}

#scp-exit:hover {
    background: darkred;
    color: white !important;
}
