/* Theme popup styles */
.ss-theme-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-theme-popup-content {
    background-color: var(--color-background);
    color: var(--color-text);
    border-radius: 8px;
    padding: 20px;
    max-width: 90%;
    width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.ss-theme-popup-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.ss-theme-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.ss-theme-popup-close {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.ss-theme-popup-close:hover {
    background-color: #444;
}

.ss-theme-popup-switch {
    background-color: #ff1f46; /* Scout brand color */
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.ss-theme-popup-switch:hover {
    background-color: #e01a3e;
}
