.custom-combinations-table {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.custom-combinations-table h3 {
    margin-bottom: 15px;
    color: #105693;
    font-size: 1.2rem;
}

.custom-combinations-table .table {
    margin-bottom: 20px;
    width: 100%;
    border-collapse: collapse;
}

.custom-combinations-table .table th,
.custom-combinations-table .table td {
    padding: 12px 8px;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.custom-combinations-table .table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    text-align: center;
}

.image-cell {
    width: 70px;
    text-align: center;
}

.combination-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background: #fff;
}

.attributes-cell {
    min-width: 150px;
}

.attr-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 8px;
    margin: 2px;
    border-radius: 4px;
    font-size: 12px;
    color: #495057;
}

.stock-ok {
    color: #4caf50;
    font-weight: bold;
}

.stock-no {
    color: #f44336;
    font-weight: bold;
}

.qty-input {
    width: 70px;
    text-align: center;
    padding: 5px;
    border-radius: 0px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.qty-input:focus {
    outline: none;
    border-color: #105693;
}

.btn-add-single {
    background: #105693;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-add-single:hover:not(:disabled) {
    background: #e65500;
    transform: translateY(-1px);
}

.btn-multi {
    background: #105693;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    margin-top: 15px;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-multi:hover:not(:disabled) {
    background: #e65500;
    transform: translateY(-1px);
}

.btn-add-single:disabled,
.btn-multi:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .custom-combinations-table {
        padding: 10px;
    }
    
    .image-cell {
        width: 50px;
    }
    
    .combination-img {
        width: 40px;
        height: 40px;
    }
    
    .qty-input {
        width: 55px;
        font-size: 12px;
    }
    
    .btn-add-single {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .attr-badge {
        font-size: 10px;
        padding: 2px 5px;
    }
}

.stepper {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #ddd;
    padding: 2px;
}

.stepper-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #105693;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stepper-btn:hover:not(:disabled) {
    background: #105693;
    color: white;
}

.stepper-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.stepper-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.stepper .qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 14px;
    padding: 5px 0;
    margin: 0;
    -moz-appearance: textfield;
}

.stepper .qty-input::-webkit-inner-spin-button,
.stepper .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 768px) {
    .stepper-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .stepper .qty-input {
        width: 40px;
    }
}