/* Taklino Custom Styles */

/* Genel mention sistemi için styling */
.mention-dropdown-visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Task filtering için styling */
.task-filter {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
}

.task-filter:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

/* Pagination controls */
#paginationControls {
    margin-top: 20px;
    text-align: center;
}

#loadMoreTasks {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

#loadMoreTasks:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

#loadMoreTasks:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .mention-dropdown {
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
    }
} 