/* SNAP State Sidebar Widget — Frontend CSS
   Matches aliceblue-badger-773359.hostingersite.com UI style
   Clean, minimal, high-contrast outline buttons */

.sssw-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: #1a1a2e;
    line-height: 1.5;
}

/* ── Affiliate notice ── */
.sssw-affiliate-notice {
    font-size: 11px;
    color: #999;
    font-style: italic;
    text-align: center;
    margin: 0 0 14px 0;
    line-height: 1.4;
    padding: 0 4px;
}

/* ── Section ── */
.sssw-section {
    margin-bottom: 24px;
}

.sssw-section-title {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}

/* ── Button group ── */
.sssw-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
}

/* ── Outline buttons ── */
.sssw-outline-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1.5px solid #1a1a2e;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none !important;
    background: #fff;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.3;
}

.sssw-outline-btn:hover,
.sssw-outline-btn:focus {
    background: #1a1a2e;
    color: #fff !important;
    text-decoration: none !important;
    outline: none;
}

/* ── CTA Box — bordered ── */
.sssw-cta-box {
    border: 1.5px solid #1a1a2e;
    border-radius: 8px;
    padding: 18px 20px;
    margin-top: 4px;
}

.sssw-cta-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 9px 0;
    text-align: center;
    color: #1a1a2e;
    line-height: 1.3;
}

.sssw-cta-text {
    font-size: 15px;
    color: #555;
    text-align: center;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.sssw-cta-btn {
    display: block;
    border: 1.5px solid #1a1a2e;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e !important;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.4;
    background: #fff;
    transition: background 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.sssw-cta-btn:hover,
.sssw-cta-btn:focus {
    background: #1a1a2e;
    color: #fff !important;
    text-decoration: none !important;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .sssw-btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    .sssw-outline-btn {
        text-align: center;
    }
}


