body { font-family: sans-serif; padding: 20px; background: #e8ebf3; }
select { width: 100%; margin-bottom: 20px; }
label { font-weight: bold; margin-top: 10px; display: block; }
code { background: #eee; padding: 10px; white-space: pre-wrap; border-radius: 6px; display: block; }

/* Card style */
.cuaca-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.cuaca-card img {
    width: 50px;
    height: 50px;
}
.cuaca-info h4 { margin: 0 0 5px 0; }
.cuaca-info p { margin: 3px 0; font-size: 14px; }

/* Responsive */
@media (max-width: 600px) {
    .cuaca-card {
        flex-direction: column;
        text-align: center;
    }
    .cuaca-card img {
        margin-bottom: 10px;
    }
}

/* Responsive dropdown form input */
.select2-container .select2-selection--single {
    height: auto !important;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
}

.select2-selection__rendered {
    font-size: 16px;
    line-height: normal;
}

.select2-selection__arrow {
    height: 100%;
}

@media (max-width: 600px) {
    select,
    .select2-container .select2-selection--single {
        font-size: 17px;
        padding: 14px 18px;
    }

    label {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .select2-container {
        width: 100% !important;
    }

    .cuaca-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cuaca-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .cuaca-info p {
        font-size: 15px;
    }

    .cuaca-info h4 {
        font-size: 17px;
    }
}