/* FC Colaborari — Plugin Styles */

/* Notificari dropdown */
#fc-notif-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
#fc-notif-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 0.5px solid #e5e7eb;
    z-index: 9999;
    overflow: hidden;
    animation: fcSlideDown .15s ease;
}
@keyframes fcSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fc-notif-item {
    padding: 12px 16px;
    border-bottom: 0.5px solid #f3f4f6;
    cursor: pointer;
    transition: background .15s;
    display: block;
    text-decoration: none;
}
.fc-notif-item:hover { background: #f9fafb; }
.fc-notif-item.unread { background: #eff6ff; }
.fc-notif-item:last-child { border-bottom: none; }
.fc-notif-title { font-size: 13px; font-weight: 500; color: #111827; margin-bottom: 2px; }
.fc-notif-msg { font-size: 12px; color: #6b7280; line-height: 1.4; }
.fc-notif-time { font-size: 10px; color: #9ca3af; margin-top: 3px; }

/* Chat messages */
.fc-chat-mine {
    align-self: flex-end;
    background: #185FA5;
    color: #fff;
    border-radius: 14px 14px 4px 14px;
    padding: 8px 12px;
    max-width: 75%;
    font-size: 13px;
}
.fc-chat-other {
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 14px 14px 14px 4px;
    padding: 8px 12px;
    max-width: 75%;
    font-size: 13px;
}
.fc-chat-mine-light {
    align-self: flex-end;
    background: #185FA5;
    color: #fff;
    border-radius: 14px 14px 4px 14px;
    padding: 8px 12px;
    max-width: 75%;
    font-size: 13px;
}
.fc-chat-other-light {
    align-self: flex-start;
    background: #f3f4f6;
    color: #111827;
    border-radius: 14px 14px 14px 4px;
    padding: 8px 12px;
    max-width: 75%;
    font-size: 13px;
}
