/* استایل‌های کارت نوتیفیکیشن */
.omntf-dropdown-box {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.omntf-dropdown-header {
    background: var(--omntf-light);
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.omntf-dropdown-header h3 { margin: 0; font-size: 1rem; color: var(--omntf-primary); }

.omntf-list-items { max-height: 300px; overflow-y: auto; }

.omntf-item {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    cursor: pointer;
}

.omntf-item:hover { background-color: #fafafa; }

.omntf-item-icon {
    margin-left: 10px;
    color: var(--omntf-primary);
}

.omntf-item-content h4 { margin: 0 0 5px 0; font-size: 0.95rem; }
.omntf-item-content p { margin: 0; font-size: 0.85rem; color: #666; }
.omntf-time { font-size: 0.75rem; color: #999; display: block; margin-top: 5px; }

.omntf-dropdown-footer {
    padding: 10px;
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.omntf-dropdown-footer a { text-decoration: none; color: var(--omntf-primary); font-size: 0.9rem; }