.booth-load-card small {
    display: block;
    margin-top: 8px;
    color: #7b6c62;
    font-weight: 600;
}
.booth-control-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 14px;
}
.booth-control-grid form {
    background: #fffaf2;
    border: 1px solid #e1d3c1;
    border-radius: 16px;
    padding: 16px;
}
.booth-control-grid button {
    width: 100%;
}
@media (max-width: 980px) {
    .booth-control-grid {
        grid-template-columns: 1fr;
    }
}
