body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.container {
    max-width: 960px;
}

.navbar {
    margin-bottom: 20px;
}

.table {
    background-color: #fff;
}

.btn-sm {
    margin-right: 5px;
}

.badge.bg-secondary {
    background-color: #6c757d;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.85em;
    margin-right: 5px;
}

.activity-log-list .alert p strong {
    display: inline-block;
    margin-right: 5px;
}

textarea, input[type="text"] {
    margin-top: 8px;
}

/* Styles for mention suggestions dropdown */
#mentionDropdown {
    position: absolute;
    z-index: 1000; /* Ensure it appears above other elements */
    background-color: #fff;
    border: 1px solid #ffd966; /* Yellow border */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
    border-radius: 4px;
    padding: 0;
    max-width: 300px;
    overflow-y: auto; /* Allows dropdown items to scroll if necessary */
}



/* Dropdown item styling for mention suggestions */
#mentionDropdown .dropdown-item {
    padding: 10px 15px; /* Slightly larger padding for touch-friendliness */
    cursor: pointer;
    font-size: 0.9rem;
    background-color: #fffbea; /* Light yellow */
    transition: background-color 0.15s ease; /* Smooth hover transition */
}

/* Hover effect for dropdown items */
#mentionDropdown .dropdown-item:hover {
    background-color: #e9ecef; /* Use a neutral background for hover */
    color: #000;
}


