/* 
 * GANTT CHART STYLES 
 * Usage: [neo_syllabus]
 */

.gantt-container {
    width: 100%;
    overflow-x: auto;
    background: #000;
    padding: 20px;
    border: 1px solid #333;
}

.gantt-lane {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.gantt-label {
    width: 150px;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: bold;
}

.gantt-track {
    flex: 1;
    position: relative;
    height: 40px;
    background: #111;
}

.gantt-bar {
    height: 100%;
    background: rgba(255, 215, 0, 0.2);
    /* Low opacity gold */
    border: 1px solid #FFD700;
    display: flex;
    align-items: center;
    padding-left: 10px;
    color: #FFD700;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.gantt-bar:hover {
    background: rgba(255, 215, 0, 0.8);
    color: #000;
}