/* Order Type Toggle Styles */

.order-type-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    margin-right: 20px;
}

.order-type-label {
    margin: 0;
    font-weight: 500;
    color: #4c5a67;
    font-size: 14px;
}

.order-type-toggle {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-order-type {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #d1d8dd;
    background-color: #fff;
    color: #4c5a67;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-order-type:hover {
    background-color: #f5f7fa;
    border-color: #b8c2cc;
}

.btn-order-type.active {
    background-color: #2490ef;
    border-color: #2490ef;
    color: #fff;
    font-weight: 600;
}

.btn-order-type:first-child {
    border-right: none;
}

.btn-order-type:last-child {
    border-left: none;
}

/* Responsive */
@media (max-width: 768px) {
    .order-type-toggle-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px;
    }
    
    .order-type-label {
        font-size: 12px;
    }
    
    .btn-order-type {
        font-size: 12px;
        padding: 5px 12px;
    }
}
