/* Order Timeline (vásárlás/eladás részletes oldal) */

.order-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

.order-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    column-gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    z-index: 1;
}

.order-timeline__item + .order-timeline__item {
    border-top: 1px solid #f3f4f6;
}

.order-timeline__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e5e7eb;
    font-size: 1rem;
}

.order-timeline__icon i {
    line-height: 1;
}

.order-timeline__icon--order_created      { background-color: #fef3c7; color: #b45309; }
.order-timeline__icon--payment_received   { background-color: #dcfce7; color: #15803d; }
.order-timeline__icon--payment_failed     { background-color: #fee2e2; color: #b91c1c; }
.order-timeline__icon--order_status_changed { background-color: #e0e7ff; color: #4338ca; }
.order-timeline__icon--refund_requested   { background-color: #ffedd5; color: #c2410c; }
.order-timeline__icon--refund_processed   { background-color: #d1fae5; color: #047857; }
.order-timeline__icon--transfer_completed { background-color: #d1fae5; color: #047857; }
.order-timeline__icon--transfer_reversed  { background-color: #f3f4f6; color: #6b7280; }
.order-timeline__icon--order_cancelled    { background-color: #fee2e2; color: #991b1b; }
.order-timeline__icon--message_sent       { background-color: #e0f2fe; color: #0369a1; }
.order-timeline__icon--tracking_set       { background-color: #ede9fe; color: #6d28d9; }

.order-timeline__body {
    min-width: 0;
    word-break: break-word;
}

.order-timeline__actor {
    font-weight: 600;
    color: #111827;
}

.order-timeline__text {
    color: #374151;
}

.order-timeline__message {
    margin-top: 6px;
    padding: 10px 12px;
    background-color: #f9fafb;
    border-left: 3px solid #d1d5db;
    border-radius: 4px;
    color: #1f2937;
    white-space: pre-wrap;
    font-size: 0.95rem;
}

.order-timeline__time {
    text-align: right;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.3;
    white-space: nowrap;
}

.order-timeline__time-rel {
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (max-width: 575.98px) {
    .order-timeline__item {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
    }
    .order-timeline__time {
        grid-column: 2 / 3;
        text-align: left;
        margin-top: 4px;
    }
    .order-timeline::before {
        left: 17px;
    }
    .order-timeline__icon {
        width: 36px;
        height: 36px;
    }
}

/* Send-a-message inline űrlap konténer */
.order-timeline-form {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
}

.order-timeline-form .form-label {
    font-weight: 600;
}

/* Tracking-szám gyors-űrlap */
.order-tracking-form {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
