.gantt-chart-container {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gantt-scroll {
    overflow-x: auto;
}

.gantt-inner {
    min-width: 1200px;
}

.gantt-header-row {
    display: flex;
    margin-bottom: 0;
}

.gantt-label-spacer {
    width: 160px;
    flex-shrink: 0;
    padding-right: 2px;
    display: flex;
    align-items: center;
}

.gantt-header-right {
    flex: 0 0 auto;
}

.gantt-year-row {
    display: flex;
    border-bottom: 1px solid #cbd5e1;
}

.gantt-year-cell {
    flex: 0 0 auto;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.gantt-month-row {
    display: flex;
}

.gantt-month-cell {
    box-sizing: border-box;
    width: 60px;
    flex: 0 0 auto;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

 .gantt-month-cell::after {
     content: '월';
 }

.gantt-project-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.gantt-project-label {
    width: 160px;
    flex-shrink: 0;
    padding-right: 2px;
    height: 38px;
    display: flex;
    align-items: center;
}

.gantt-project-label-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gantt-project-emoji {
    font-size: 20px;
}

.gantt-project-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.gantt-timeline {
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
}

.gantt-task-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
}

.gantt-task-bar-inner {
    height: 100%;
    border-radius: 10px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 0.95;
}

.gantt-task-bar-text {
    color: white;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.gantt-milestone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.gantt-milestone-label {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
}
