/* Active/inactive state additions for merchant shipper management. */
.shipper-status-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.shipper-active-control > input[type='checkbox']:checked + .shipper-default-check {
    background: #14875d;
}

.shipper-profile-card.is-inactive {
    border-color: #d8dde5;
    background: #fafbfc;
}

.shipper-profile-card.is-inactive .shipper-card-avatar {
    color: #667085;
    background: #edf0f4;
}

@media (max-width: 720px) {
    .shipper-status-controls {
        grid-template-columns: minmax(0, 1fr);
    }
}
