section.not-found {
    display: flex;
    justify-content: center;
    font-size: 32px;
    padding: 50px 16px;
    color: #6946EB;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}

.tracking {
    position: relative;
    height: 100vh;
    display: none;
}

.tracking-details-container {
    position: absolute;
    top: 0;
    z-index: 1000;
    background: rgba(105, 70, 235, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.tracking-details-wrapper {
    background: #FFF;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 16px;
    font-size: 14px;
    max-height: 90vh;
    overflow-y: auto;
}

.tracking-details-wrapper::-webkit-scrollbar {
    width: 12px;
}

.tracking-details-wrapper::-webkit-scrollbar-thumb {
    width: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.tracking-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shipment-info {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shipment-info:hover {
    box-shadow: 0 0 4px rgba(105, 70, 235, 0.9);
}

.shipment-info-header {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
}

.si-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.si-header-icon {
    background: rgba(0, 0, 0, 0.1);
    font-size: 20px;
    padding: 16px;
    border-radius: 10px;
}

.si-header-dropdown-icon {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}

.si-header-title {
    color: rgba(0, 0, 0, 0.5);
}

.si-header-caption {
    font-weight: 600;
}

.shipment-info-body {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.si-item {
    display: flex;
    align-items: start;
    gap: 16px;
    justify-content: space-between;
}

.si-i-title {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.si-i-value {
    text-align: right;
}

.badge {
    color: orange;
    background: rgba(255, 165, 0, 0.1);
    font-weight: 600;
    border-radius: 5px;
    padding: 4px 8px;
    border: 1px solid orange;
}

.sii-item {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
}

.sii-item:last-child {
    border: none;
}

#shipment-info-items .si-header-caption {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

#shipment-info-items .shipment-info-body,
#shipment-info-timeline .shipment-info-body,
#shipment-info-receiver .shipment-info-body,
#shipment-info-shipper .shipment-info-body {
    display: none;
}

.tl-item {
    display: flex;
    gap: 16px;
}

.tl-item-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tl-item-left i {
    font-size: 24px;
}

.ri-circle-line {
    color: rgba(0, 0, 0, 0.5);
}

.ri-checkbox-circle-fill {
    color: #6946EB;
}

.tl-connector {
    width: 3px;
    height: 100%;
    background: #6946EB;
}

.tl-item-middle {
    display: flex;
    flex-direction: column;
}

.tl-item-middle h2 {
    font-size: 14px;
    padding-top: 8px;
}

.tl-item-middle p {
    font-size: 13px;
}

.tl-item-right {
    margin-left: auto;
    text-align: right;
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    padding-top: 8px;
}