.transfer-list {

    max-width: 800px;

}

.transfer-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 12px 14px;

    margin-bottom: 8px;

    background: white;

    border: 1px solid #eee;

    border-radius: 8px;

}

.transfer-card-main {

    flex: 1;

}

.transfer-card-title {

    font-weight: 600;

    margin-bottom: 4px;

}

.transfer-card-detail {

    font-size: 13px;

    color: #6b7280;

}

.transfer-card-actions {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

}

.transfer-status {

    font-size: 12px;

    padding: 4px 10px;

    border-radius: 999px;

    flex-shrink: 0;

}

.transfer-status-initiated {

    background: #fef3c7;

    color: #92400e;

}

.transfer-status-in_transit {

    background: #dbeafe;

    color: #1e40af;

}

.transfer-status-received {

    background: #ecfdf3;

    color: #067647;

}

.transfer-card-total {

    font-weight: 600;

}

.history-type {

    font-size: 12px;

    padding: 2px 8px;

    border-radius: 999px;

    margin-right: 6px;

}

.history-type-purchase {

    background: #ecfdf3;

    color: #067647;

}

.history-type-sale {

    background: #dbeafe;

    color: #1e40af;

}

.transfer-detail-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 12px;

    font-size: 14px;

}

.transfer-list-item {

    cursor: pointer;

}

.transfer-list-item:hover {

    background: #f9fafb;

}

.transfer-list-title {

    margin-top: 20px;

    margin-bottom: 4px;

    font-size: 18px;

}

.transfer-timeline {

    position: relative;

    margin: 16px 0 24px;

    padding-left: 24px;

}

.transfer-timeline-step {

    position: relative;

    padding-bottom: 22px;

}

.transfer-timeline-step:last-child {

    padding-bottom: 0;

}

.transfer-timeline-step::before {

    content: "";

    position: absolute;

    left: -19px;

    top: 14px;

    bottom: -8px;

    width: 2px;

    background: #e5e7eb;

}

.transfer-timeline-step:last-child::before {

    display: none;

}

.transfer-timeline-dot {

    position: absolute;

    left: -24px;

    top: 2px;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--primary-color, #2563eb);

    border: 2px solid white;

    box-shadow: 0 0 0 1px #e5e7eb;

}

.transfer-timeline-label {

    font-weight: 600;

    font-size: 14px;

}

.transfer-timeline-date {

    margin-top: 2px;

    font-size: 12px;

    color: #6b7280;

}

.transfer-timeline-step-pending .transfer-timeline-dot {

    background: #d1d5db;

}

.transfer-timeline-step-pending .transfer-timeline-label {

    color: #9ca3af;

    font-weight: 400;

}
