/* Selbold Notify Plugin Styles */
#selbold-notify-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 24px;
    border: 2px solid #105aa7;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: none;
    width: 360px;
    max-width: 90%;
    z-index: 99999999;
    font-family: "Open Sans", sans-serif;
    color: #333;
}

#selbold-notify-btn {
    background: #000000;
    color: white;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s ease;
}
#selbold-notify-btn:hover {
    background: #0d4c8c;
}

#selbold-notify-submit,
#selbold-notify-optout,
#selbold-notify-close {
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: background 0.3s ease;
}
#selbold-notify-submit {
    background: #105aa7;
    color: white;
}
#selbold-notify-submit:hover {
    background: #0d4c8c;
}

#selbold-notify-optout {
    background: #e74c3c;
    color: white;
}
#selbold-notify-optout:hover {
    background: #c0392b;
}

#selbold-notify-close {
    background: #bdc3c7;
    color: #2c3e50;
}
#selbold-notify-close:hover {
    background: #95a5a6;
}

#selbold-notify-popup .button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.small-label {
    font-size: 12px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 10px;
    color: #666;
}

#selbold-notify-popup div {
    margin: 0;
    padding: 0;
}

#selbold-notify-popup h3 {
    margin-bottom: 6px;
    color: #105aa7;
    font-size: 20px;
    font-weight: 600;
}

#selbold-notify-popup p {
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
}

#selbold-notify-popup label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
}

#selbold-notify-popup input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 14px;
}

#selbold-notify-popup input[type="radio"] {
    margin-right: 6px;
    vertical-align: middle;
}

/* 📱 Responsive: Buttons untereinander auf kleinen Screens */
@media screen and (max-width: 420px) {
    #selbold-notify-popup .button-row {
        flex-direction: column;
    }
}
