/* B2B Layout Styles */
.order__info .b2b-layout {
    max-width: 1400px;
}

.order__info .b2b-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .order__info .b2b-container {
        flex-direction: column;
    }
}

.order__info .b2b-left {
    flex: 1;
    min-width: 0;
}

.order__info .b2b-left .packages-wrapper {
    max-width: 100%;
}

.order__info .b2b-right {
    flex: 1;
    min-width: 0;
    padding-top: 20px;
}

@media (max-width: 992px) {
    .order__info .b2b-right {
        width: 100%;
    }
}

/* Koli Summary */
.order__info .koli-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .order__info .koli-summary {
        flex-direction: column;
        gap: 10px;
    }
}

.order__info .koli-summary-left strong {
    font-size: 1.6rem;
    color: #000;
}

.order__info .koli-summary-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 480px) {
    .order__info .koli-summary-right {
        text-align: left;
    }
}

.order__info .koli-summary-right span {
    font-size: 1.4rem;
    color: #525252;
}

/* Koli Table */
.order__info .koli-table-wrapper {
    overflow-x: auto;
}

.order__info .koli-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
}

.order__info .koli-table thead {
    background-color: #f0f0f0;
}

.order__info .koli-table thead th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #dee2e6;
}

.order__info .koli-table tbody tr {
    border-bottom: 1px solid #dee2e6;
}

.order__info .koli-table tbody tr:hover {
    background-color: #f8f9fa;
}

.order__info .koli-table tbody tr:last-child {
    border-bottom: none;
}

.order__info .koli-table tbody td {
    padding: 12px 15px;
    color: #525252;
}

.order__info .koli-table tbody td.status-4 {
    color: #0076b5;
    font-weight: 500;
}

.order__info .koli-table tbody td.status-3 {
    color: #AAC811;
    font-weight: 500;
}

.order__info .koli-table tbody td.status-2 {
    color: #f5a623;
    font-weight: 500;
}

.order__info .koli-table tbody td.status-1 {
    color: #e60000;
    font-weight: 500;
}

.button.button-second.disabled {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: #9e9e9e !important;
    border-color: #9e9e9e !important;
    color: white !important;
    box-shadow: none !important;
}

    .button.button-second.disabled:hover {
        background-color: #9e9e9e !important;
        border-color: #9e9e9e !important;
        color: white !important;
        box-shadow: none !important;
        transform: none !important;
    }