.fch-slot-overview {
    width: 100%;
    max-width: 980px;
    margin: 24px 0;
    font-family: inherit;
}

.fch-slot-title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    line-height: 1.25;
}

.fch-slot-list {
    display: grid;
    gap: 14px;
}

.fch-slot-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.fch-slot-topline,
.fch-slot-bottomline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.fch-slot-name {
    font-weight: 700;
    font-size: 1rem;
}

.fch-slot-numbers {
    white-space: nowrap;
    font-size: 0.95rem;
}

.fch-slot-numbers strong {
    font-size: 1.25rem;
}

.fch-slot-bar {
    width: 100%;
    height: 13px;
    background: #ededed;
    border-radius: 999px;
    overflow: hidden;
    margin: 12px 0 8px;
}

.fch-slot-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #5cb85c, #f0ad4e);
    border-radius: 999px;
    transition: width 0.25s ease;
}

.fch-slot-card.is-full .fch-slot-bar-fill {
    background: #d9534f;
}

.fch-slot-card.is-full .fch-slot-numbers strong,
.fch-slot-card.is-full .fch-slot-bottomline span:last-child {
    color: #b02a25;
}

.fch-slot-bottomline {
    font-size: 0.9rem;
    color: #555;
}

.fch-slot-message {
    padding: 14px 16px;
    background: #fff8e5;
    border: 1px solid #f1d28a;
    border-radius: 10px;
}

.fch-slot-debug {
    margin-top: 16px;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    overflow: auto;
    font-size: 12px;
}

@media (max-width: 640px) {
    .fch-slot-topline,
    .fch-slot-bottomline {
        display: block;
    }

    .fch-slot-numbers {
        margin-top: 4px;
    }
}
