/* components/FORM-STRIP.CSS */

/* Section Shell */
.form-section {
    padding-top: calc(var(--grid-gap) * 0.5);
    padding-bottom: var(--section-pad);
}

.form-display {
    text-align: center;
}

/* Bubble Row */
.form-results {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.form-result {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--off-white);
    border-radius: var(--radius-circle);
    box-shadow: var(--shadow-medium);
    cursor: default;
    --current-hover-scale: var(--hover-scale-sm) !important;
}

.form-result:last-child {
    width: calc(50px + 5px);
    height: calc(50px + 5px);
    margin: -2px;
    border: 3px solid var(--off-white);
}

/* Colours */
.form-result.win { background: var(--light-green); }
.form-result.draw { background: var(--golden-yellow); }
.form-result.loss { background: var(--soft-coral); }

.form-result.win:last-child { box-shadow: 0 0 0 3px var(--light-green); }
.form-result.draw:last-child { box-shadow: 0 0 0 3px var(--golden-yellow); }
.form-result.loss:last-child { box-shadow: 0 0 0 3px var(--soft-coral); }

/* Hover */
.form-result.win:last-child:hover { box-shadow: 0 0 0 3px var(--light-green), var(--shadow-hover) !important; }
.form-result.draw:last-child:hover { box-shadow: 0 0 0 3px var(--golden-yellow), var(--shadow-hover) !important; }
.form-result.loss:last-child:hover { box-shadow: 0 0 0 3px var(--soft-coral), var(--shadow-hover) !important; }

/* Caption */
.form-description {
    display: block;
    margin-bottom: var(--grid-gap);
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .form-results {
        gap: 0.6rem;
    }

    .form-result {
        width: 35px; height: 35px; font-size: 1rem;
    }

    .form-result:last-child {
        width: calc(35px + 4px); height: calc(35px + 4px);
    }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
    .form-result {
        width: 30px; height: 30px;
    }

    .form-result:last-child {
        width: calc(30px + 4px); height: calc(30px + 4px); border: 2px solid var(--off-white);
    }

    .form-result.win:last-child {
        box-shadow: 0 0 0 2px var(--light-green);
    }

    .form-result.draw:last-child {
        box-shadow: 0 0 0 2px var(--golden-yellow);
    }

    .form-result.loss:last-child {
        box-shadow: 0 0 0 2px var(--soft-coral);
    }
}