#spa-overlay {
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    display:none;
    z-index:9998;
}

#spa-popup {
    position: fixed;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    padding:30px;
    border-radius:16px;
    display:none;
    max-width:420px;
    width:90%;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,0.2);
    z-index:9999;
}

/* ==========================
   TEXT
========================== */

#spa-content h2 {
    font-size:22px;
    margin-bottom:10px;
}

#spa-content p {
    color:#666;
    margin-bottom:15px;
}

#spa-content ul {
    text-align:left;
    margin-bottom:20px;
    padding-left:20px;
}

#spa-content li {
    margin:5px 0;
}


/* ==========================
   KNAPPAR (ENDA KÄLLAN)
========================== */

.spa-btn {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin: 6px;
    transition: all 0.2s ease;
}

/* JA */
.spa-yes {
    background: #1e293b;
    color: #fff;
}

.spa-yes:hover {
    background: #0f172a;
}

/* NEJ */
.spa-no {
    background: #e5e7eb;
    color: #111;
}

.spa-no:hover {
    background: #d1d5db;
}

/* PRIMARY / CTA */
.spa-primary {
    background: #2563eb;
    color: #fff;
    font-weight: 500;
}

.spa-primary:hover {
    background: #1d4ed8;
}


/* ==========================
   INPUTS
========================== */

#spa-popup input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}


/* ==========================
   BILD (VIKTIG FIX)
========================== */

.spa-ad-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


/* ==========================
   CLOSE BUTTON
========================== */

#spa-close {
    position:absolute;
    top:10px;
    right:15px;
    cursor:pointer;
    font-size:20px;
}