.wmbs-container {
    max-width: 1000px;
    margin: 70px auto;
    padding: 20px;
}

.wmbs-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 600;
}

.wmbs-search-box {
    text-align: center;
    margin-bottom: 40px;
}

/* SELECT FINAL FIX */

.wmbs-container select {
    width: 360px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    color: #333 !important;
}

.wmbs-container select.wmbs-placeholder {
    color: #999 !important;
}

.wmbs-container select option {
    color: #333;
}

/* Button */

#wmbs-check {
    padding: 12px 22px;
    background: #ff6a00;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

#wmbs-check:hover {
    background: #e85c00;
}

/* Card */

.wmbs-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.wmbs-image img {
    width: 240px;
    border-radius: 12px;
}

.wmbs-content {
    flex: 1;
}

.wmbs-phone-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.wmbs-score-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.wmbs-score-big {
    font-size: 64px;
    font-weight: 800;
    color: #ff6a00;
}

.wmbs-score-total {
    font-size: 22px;
    margin-left: 5px;
    color: #555;
}

.wmbs-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.wmbs-stats-grid div {
    background: #f7f7f7;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.wmbs-grade {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.grade-a { background: #e6f8ec; color: #1e7e34; }
.grade-b { background: #fff3cd; color: #856404; }
.grade-c { background: #ffe5d0; color: #a04a00; }
.grade-low { background: #f8d7da; color: #721c24; }

.wmbs-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ff6a00;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.wmbs-btn:hover {
    background: #e85c00;
}

.wmbs-loading,
.wmbs-error {
    text-align: center;
    padding: 40px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {

    .wmbs-container select {
        width: 100%;
        margin-bottom: 10px;
    }

    #wmbs-check {
        width: 100%;
        margin-left: 0;
    }

    .wmbs-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .wmbs-stats-grid {
        grid-template-columns: 1fr;
    }

    .wmbs-image img {
        width: 200px;
    }
}