body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0f;
    color: #e0e0e0;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
    justify-content: center;
}

.container.glass {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.12);
    width: 420px;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #73ffd8;
    text-shadow: 0 0 8px #00ffbf52;
}

select, button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

button {
    background: #00d4a9;
    color: #000;
    cursor: pointer;
    margin-top: 16px;
    font-weight: bold;
    transition: 0.2s;
}

.refresh-btn {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #1e1e22;
    color: #73ffd8;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #00ffbf44;
}

.refresh-btn:hover {
    background: #27272d;
    box-shadow: 0 0 10px #00ffbf33;
}

button:hover {
    background: #00ffd0;
}

.result-card {
    margin-top: 25px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden {
    display: none;
}

.badge {
    padding: 6px 10px;
    display: inline-block;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 12px;
}

.badge.green {
    background: #00ffbf33;
    color: #00ffbf;
}

.badge.red {
    background: #ff003333;
    color: #ff4f4f;
}

.badge.yellow {
    background: #ffe60033;
    color: #ffe865;
}

.update-badge {
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    color: #73ffd8;
    text-shadow: 0 0 4px #00ffbf33;
}

.search-input {
    width: 100%;
    padding: 12px;                     /* samma padding som select/knappar */
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    background: #1e1e22;
    color: #73ffd8;
    font-size: 16px;
    border: 1px solid rgba(0,255,191,0.3);
    box-sizing: border-box;            /* fixar att bredden matchar precis */
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 8px #00ffbf44;
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInMove 0.35s ease-out forwards;
}

@keyframes fadeInMove {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-month-block h3 {
    margin-top: 0;
    color: #73ffd8;
}
