/* Timeline Styles - 2 Column Layout */
.timeline-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #fed7aa, #F97316);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.timeline-item.left {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item.right {
    text-align: left;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 3px solid #F97316;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #D93025;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .timeline-dot {
    right: -16px;
}

.timeline-item.right .timeline-dot {
    left: -16px;
}

@media (max-width: 768px) {
    .timeline-container {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 15px;
    }

    .timeline-item.left,
    .timeline-item.right {
        text-align: left;
        padding-left: 3rem;
        padding-right: 0;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 0;
        right: auto;
    }
}

/* Table Styles */
.price-table th {
    background-color: #D93025;
    color: white;
    border: 1px solid #ffdede;
}

.price-table td {
    border: 1px solid #f3f4f6;
    padding: 12px 8px;
}

.price-table tr:hover td {
    background-color: #fff7ed;
}

/* Custom scrollbar for table on mobile */
.table-scroll::-webkit-scrollbar {
    height: 6px;
}

.table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #D93025, #F97316);
    border-radius: 10px;
}

/* Accordion */
.accordion-content {
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #D93025;
}

.ticker-wrap:hover .animate-ticker {
    animation-play-state: paused;
}
