/* :root {
    --bg: #ffffff;
    --text: #111111;
    --card: #ffffff;
    --accent: #2271b1;
}

[data-theme="dark"] {
    --bg: #121212;
    --text: #ffffff;
    --card: #1e1e1e;
    --accent: #4ea1ff;
}

body {
    background: var(--bg);
    color: var(--text);
}

.country-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.country-modal-content {
    background: var(--card);
    padding: 28px;
    border-radius: 12px;
    width: 340px;
    text-align: center;
}

.country-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.theme-switch {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.theme-switch button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

#theme-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
} */
