
/* trashList 0.9.9.3 — admin repair order controls */
.admin-repair-checkout-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.repair-order-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 420px;
    padding: 10px 12px;
    border: 1px solid #dfe5ea;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
}
.repair-order-toggle input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 auto;
}
.repair-order-toggle span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.repair-order-toggle small {
    color: #66717b;
    line-height: 1.35;
}
.purchase-action-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
@media (max-width: 760px) {
    .admin-repair-checkout-form {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }
    .repair-order-toggle {
        max-width: none;
        width: 100%;
        box-sizing: border-box;
    }
    .admin-repair-checkout-form > button {
        width: 100%;
        min-height: 46px;
    }
    .purchase-action-stack {
        flex-direction: column;
    }
    .purchase-action-stack form,
    .purchase-action-stack button {
        width: 100%;
    }
}

.repair-line-form {
    margin-top: 8px;
}
.repair-line-toggle {
    min-height: 34px;
    padding: 6px 9px;
    border: 1px solid #d9e0e6;
    border-radius: 9px;
    background: #f6f8fa;
    color: #4f5c67;
    font-size: 12px;
    font-weight: 700;
}
.repair-line-toggle.is-active {
    border-color: #b9d7ff;
    background: #edf6ff;
    color: #1367c9;
}
@media (max-width: 760px) {
    .repair-line-form,
    .repair-line-toggle {
        width: 100%;
    }
    .repair-line-toggle {
        min-height: 42px;
        text-align: left;
    }
}
