#suti-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Átlátszó háttér */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#suti-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    text-align: center;
}

#suti-popup-close {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* ÚJ: Link gombok stílusa */
.suti-popup-link-button {
    /* Alapvető gomb stílus */
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none; /* Link aláhúzás eltávolítása */
    flex-grow: 1; /* Hogy kitöltsék a rendelkezésre álló helyet */
    transition: background-color 0.3s;
    margin: 3px 10px;
}

/* ELSŐ gomb stílusa (Zöld) */
#popup-link-1 {
    background-color: #ffac66;
    color: white;
}

/* MÁSODIK gomb stílusa (Kék) */
#popup-link-2 {
    background-color: #ffac66;
    color: white;
}