.animation-header {
    font-size: 0.875rem;
    font-weight: bold;
    color: #9CA3AF;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.animation-window {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    font-size: 0.8rem;
    color: #374151;
    overflow: hidden;
}

.grid-header,
.grid-row {
    display: grid;
    grid-template-columns: 30px 1fr 60px 100px 100px 50px 90px;
    gap: 8px;
    align-items: center;
    text-align: left;
}

.grid-header {
    font-weight: bold;
    color: #4b5563;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.grid-row {
    padding: 0.3rem 0;
    border-radius: 4px;
}

.grid-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.name-indent {
    margin-left: 20px;
}

.predecessor-chip {
    display: inline-block;
    background-color: #e5e7eb;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.75rem;
}

.task-name-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.comment-icon {
    color: #2563EB; /* blue-600 */
    flex-shrink: 0;
    margin-left: 8px;
}


@media (max-width: 480px) {
    .animation-window {
        overflow-x: auto;
    }

    .grid-header, .grid-row {
        min-width: 550px;
    }

    .annotation {
        display: none;
    }
}
