.pjm-container {
    width: 600px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

@media (max-width: 600px) {
    .pjm-container {
        width: 90vw;
    }
}


.pjm-container.slide-in {
    animation: slideInLeftPjm 1s forwards;
}

.pjm-container.slide-out {
    animation: slideOutRightPjm 1s forwards;
}

.pjm-header {
    margin-bottom: 10px;
}

.pjm-title {
    font-weight: bold;
    font-size: 1.5em;
}

.gantt-diagram-container {
    display: flex;
    gap: 20px;
    justify-content: left;
    align-items: left;
    margin-bottom: 20px;
}

.gantt-diagram {
    text-align: center;
}

.gantt-image {
    width: 200px;
    border-radius: 5px;
}

.gantt-inline-comment {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 5px;
    background-color: #f4f5f7;
    border-left: 2px solid #f28b2a;
    display: none; /* Initially hidden */
    margin-left: 10px; /* Slight indent for the comment */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gantt-inline-comment.visible {
    display: flex;
    opacity: 1;
}


.sprint-section {
    margin-top: 20px;
}

.sprint-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.sprint-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sprint-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.5s ease;
}

.sprint-item.highlight {
    background-color: #ffefc2;
}

.item-title {
    flex: 3;
}

.item-status {
    flex: 1;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    padding: 3px 5px;
    max-width:max-content;
}

.item-status.in-progress {
    background-color: #f0ad4e;
    color: white;
}

.item-status.completed {
    background-color: #5cb85c;
    color: white;
}

.item-status.not-started {
    background-color: #d9534f;
    color: white;
}

.item-assignee {
    
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: auto;
    width: 100px;
    padding-left: 1em;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 5px;
    color: white;
}

.avatar-neo {
    background-color: #f28b2a;
    background-image: url(/static/images/animations/neo.svg);
    background-size: cover;
}

.avatar-jose {
    background-color: #007bff;
    color: white;
}

.avatar-michael {
    background-color: #28a745;
    color: white;
}

.avatar-francis {
    background-color: #17a2b8;
    color: white;
}

.avatar-sam {
    background-color: #ffc107;
    color: white;
}

.avatar-bingbing {
    background-color: #dc3545;
    color: white;
}

@keyframes slideInLeftPjm {
    0% {
        /* transform: translateX(-100%); */
        opacity: 0;
    }
    100% {
        /* transform: translateX(0); */
        opacity: 1;
    }
}

@keyframes slideOutRightPjm {
    0% {
        /* transform: translateX(0); */
        opacity: 1;
    }
    100% {
        /* transform: translateX(-100%); */
        opacity: 0;
    }
}