.jira-container {
    position: relative;
    width: 400px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px #00000033;
    text-align: left;
    opacity: 0;
    border-radius: 8px;
}

@media (width <= 600px) {
    .jira-container {
        width: 90vw;
    }
}

.jira-container.slide-in {
    animation: slide-in-right 1s forwards;
}

.jira-container.slide-out {
    animation: slide-out-left 1s forwards;
}

.issue-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.issue-title {
    font-weight: bold;
}

.issue-status {
    color: #5e6c84;
    font-size: 0.9em;
    padding: 3px 8px;
    background-color: #dfe1e6;
    border-radius: 3px;
}

.issue-status.doing {
    background-color: #f28b2a;
    color: white;   
}

.issue-description {
    height: 50px;
    background-color: #ebecf0;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
    color: #172b4d;
}

.issue-assign {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: gray;
}

.assignee {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dropdown {
    position: absolute;
    right: 5px;
    display: none;
}

.dropdown.open {
    display: block;
}

.dropdown-selected {
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    cursor: pointer;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-list {
    display: none;
    position: absolute;
    right: 0;
    margin: 0;
    padding: 2px;
    list-style-type: none;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    overflow-y: auto;
    z-index: 100;
    border-radius: 3px;
}

.dropdown.open .dropdown-list {
    display: block;
    animation: fade-in 0.3s ease;
}

.dropdown-list li {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-list li:hover,
.dropdown-list li.highlighted {
    background-color: #f0f0f0;
}

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

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

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

.comments {
    margin-top: 10px;
}

.comment {
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comment.visible {
    opacity: 1;
}

.comment-text {
    background-color: #f4f5f7;
    padding: 10px;
    border-radius: 8px;
    margin-left: 10px;
    flex: 1;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        /* transform: translateX(-100%); */
        opacity: 0;
    }

    100% {
        /* transform: translateX(0); */
        opacity: 1;
    }
}

@keyframes slide-out-left {
    0% {
        /* transform: translateX(0); */
        opacity: 1;
    }

    100% {
        /* transform: translateX(-100%); */
        opacity: 0;
    }
}