﻿/* Montage Transactions Scrool Bar */
#montageModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f47b22 transparent;
}

    #montageModal .modal-body::-webkit-scrollbar {
        width: 2px;
    }

    #montageModal .modal-body::-webkit-scrollbar-track {
        background: transparent;
    }

    #montageModal .modal-body::-webkit-scrollbar-thumb {
        background-color: #f47b22;
        border-radius: 10px;
    }

        #montageModal .modal-body::-webkit-scrollbar-thumb:hover {
            background: #d96816;
        }
        /*End*/


.montageQuantitySelect {
    border-radius: 8px;
    border: 1px solid #f47b22;
    padding: 6px 12px;
    min-width: 100px;
}

.montageRemoveBtn {
    border-radius: 5px !important;
    height: 2em;
    background-color: #EB5A3C;
    color: #fff;
    font-weight: 500;
    padding: 0 1rem;
    border: none;
    transition: background-color 0.3s ease;
}

    .montageRemoveBtn:hover {
        background-color: #d44429;
        color: #fff;
    }

.montageAddBtn {
    border-radius: 5px !important;
    height: 2em;
    background-color: #f47b22;
    color: #fff;
    font-weight: 500;
    padding: 0 1rem;
    border: none;
    transition: background-color 0.3s ease;
}

    .montageAddBtn:hover {
        background-color: #c56c2b;
        color: #fff;
    }

.modal-content {
    border-radius: 12px;
}

.montage-item-row {
    gap: 1rem;
}

.montageActionBtn,
.vehicleInfoAdd {
    padding: 0 2rem !important;
    background-color: #f47b22 !important;
    border: none;
    border-radius: 5px !important;
    height: 2em !important;
    transition: background-color 0.3s ease;
}

    .montageActionBtn:hover,
    .vehicleInfoAdd:hover {
        background-color: #c75d15 !important;
        border: none;
        color: #fff;
    }
#montageServiceAll {
    border: 2px solid #f47b22;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    animation: borderPulse 2s infinite;
}

.montage-card {
    background-color: #ffe8d6;
    border-radius: 8px;
    padding: 10px;
    max-width: 370px;
}


.montage-title {
    color: #f47b22;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.product-info {
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 12px;
}

.product-text {
    color: #666;
    font-size: 12px;
    margin-bottom: 0;
}

.quantity-control {
    background: white;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

.quantity-btn {
    background: white;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

    .quantity-btn:hover {
        background: #f47b22;
        color: white;
        border-color: #f47b22;
    }

.quantity-value {
    padding: 0 15px;
    font-weight: 600;
    color: #333;
}

.check-icon {
    width: 20px;
    height: 20px;
    accent-color: #f47b22;
}

.productCardTotalContent li span{
    color: black;
    font-size: 12px;
}
.montage-card.disabled {
    background-color: #eee;
    opacity: 1;
}

    .montage-card.disabled .montage-title,
    .montage-card.disabled .product-info,
    .montage-card.disabled .product-text,
    .montage-card.disabled .quantity-value {
        color: #888 !important;
    }

    .montage-card.disabled .quantity-btn {
        background-color: #f5f5f5;
        color: #aaa;
        border-color: #ccc;
        cursor: default;
    }

        .montage-card.disabled .quantity-btn:hover {
            background-color: #f5f5f5;
            color: #aaa;
            border-color: #ccc;
        }

    .montage-card.disabled .check-icon {
        border-color: #ccc;
        color: #aaa;
    }

@keyframes borderPulse {
    0% {
        border-color: #f47b22;
        box-shadow: 0 0 0px rgba(244, 123, 34, 0.7);
    }

    50% {
        border-color: #ff9933;
        box-shadow: 0 0 15px rgba(244, 123, 34, 0.7);
    }

    100% {
        border-color: #f47b22;
        box-shadow: 0 0 0px rgba(244, 123, 34, 0.7);
    }
}


