.propertyke-notifications {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
}

.propertyke-notification-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
}

.propertyke-notification-item:hover {
    background: #f1f5f9;
    color: #0041d9;
}

.propertyke-notification-item i {
    font-size: 22px;
}

.propertyke-notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    /* accent-red */
    color: white;
    font-size: 11px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

/* Dark mode support */
.dark .propertyke-notification-item {
    background: #1e293b;
    color: #94a3b8;
}

.dark .propertyke-notification-item:hover {
    background: #334155;
    color: #3b82f6;
}

.dark .propertyke-notification-count {
    border-color: #0f172a;
}