@import url('../../bluey-basica/css/styles.css');

/* Planner Specific Styles */

/* Timeline */
.marinero-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.marinero-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(to bottom,
            var(--primary-color) 0,
            var(--primary-color) 10px,
            transparent 10px,
            transparent 20px);
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.step-content {
    position: relative;
    width: 45%;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.timeline-step:nth-child(odd) .step-content {
    left: 0;
}

.timeline-step:nth-child(even) .step-content {
    left: 55%;
}

.step-time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.step-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .marinero-timeline::before {
        left: 20px;
    }

    .timeline-step .step-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }

    .step-time {
        left: 20px;
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}