.mencoes-dropdown {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mencao-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
}

.mencao-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
}

.mencao-item:last-child {
    border-bottom: none;
}

.mencao-item:hover,
.mencao-item.selected {
    background-color: #f0f7ff;
}

.mencao-item.selected {
    background-color: #e3f2fd;
}

.mencao-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.mencao-avatar-iniciais {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.mencao-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.mencao-nome {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mencao-email {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mencao-empty {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}


.mencao-tag {
    background-color: #e8f4fd !important;
    color: #0366d6 !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    cursor: default;
    border: 1px solid #c8e1ff;
    text-decoration: none !important;
}

.mencao-tag:hover {
    background-color: #dbeafe !important;
    border-color: #a8d1ff;
    text-decoration: none !important;
}

.mencoes-notificacoes {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 8px;
}

.titulo_mencoes {
    padding: 8px 16px;
    background: #f8f9fa;
}

.titulo_mencoes h6 {
    margin: 0;
    color: #333;
    font-size: 13px;
}

.mencao-notificacao {
    border-bottom: 1px solid #f0f0f0;
}

.mencao-notificacao:last-child {
    border-bottom: none;
}

.mencao-notificacao a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
}

.mencao-notificacao a:hover {
    background-color: #f8f9fa;
}

.mencao-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.mencao-avatar-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 1px solid #e0e0e0;
}

.mencao-avatar-small-iniciais {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
}

.mencao-autor {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    flex: 1;
}

.mencao-tempo {
    font-size: 11px;
    color: #999;
}

.mencao-titulo {
    margin: 0;
    font-size: 13px;
    color: #666;
    padding-left: 36px;
}

.badge-mencoes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    text-align: center;
}

textarea[data-mencoes="true"],
textarea.mencoes-enabled {
    position: relative;
}

/* Container relativo para posicionamento do dropdown */
.mencoes-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mencoes-dropdown {
    animation: fadeIn 0.15s ease;
}

@media (max-width: 768px) {
    .mencoes-dropdown {
        min-width: 200px !important;
        max-width: 280px !important;
    }
    
    .mencao-item {
        padding: 8px 10px;
    }
    
    .mencao-avatar {
        width: 32px;
        height: 32px;
    }
    
    .mencao-nome {
        font-size: 13px;
    }
    
    .mencao-email {
        font-size: 11px;
    }
}

.mencoes-dropdown::-webkit-scrollbar {
    width: 6px;
}

.mencoes-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mencoes-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.mencoes-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.mencao-loading {
    padding: 20px;
    text-align: center;
}

.mencao-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.descricao-com-mencoes .mencao-tag {
    background-color: #e8f4fd;
    color: #0366d6;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
    cursor: default;
    border: 1px solid #c8e1ff;
}

/* Menção no histórico/timeline */
.timeline-item .mencao-tag,
.historico-item .mencao-tag {
    background-color: #e8f4fd;
    color: #0366d6;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #c8e1ff;
}


@media (prefers-color-scheme: dark) {
    .mencoes-dropdown {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .mencao-item:hover,
    .mencao-item.selected {
        background-color: #3d3d3d;
    }
    
    .mencao-nome {
        color: #e0e0e0;
    }
    
    .mencao-email {
        color: #999;
    }
}

.mencoes-ckeditor {
    min-width: 280px;
}

/* Estilo dentro do CKEditor */
.cke_editable .mencao-tag,
.cke_editable .mencao-usuario {
    background-color: #e8f4fd;
    color: #0366d6 !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #c8e1ff;
    display: inline-block;
}

/* Menção na listagem de tarefas/atividades */
.item_lista .mencao-tag,
.item_lista a .mencao-tag,
.body_lista .mencao-tag,
.body_lista a .mencao-tag {
    background-color: #e8f4fd !important;
    color: #0366d6 !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #c8e1ff;
    display: inline-block;
    text-decoration: none;
}
