@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Space Grotesk', sans-serif;
}
/* Timeline styles */
.left-timeline {
    flex-direction: row-reverse;
}

.right-timeline .order-1 {
    text-align: right;
}

@media (max-width: 768px) {
    .left-timeline, .right-timeline {
        flex-direction: column;
    }
    
    .left-timeline .order-1, 
    .right-timeline .order-1 {
        width: 100%;
        text-align: left;
    }
    
    .left-timeline .order-1, 
    .right-timeline .order-1 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* Content styles */
ul.list-disc {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.bg-gray-800 {
    background-color: rgba(31, 41, 55, 0.8);
}

.border-gray-700 {
    border-color: rgba(55, 65, 81, 0.7);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a202c;
}

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #718096;
}