/* Public Styles for БГ СКАМЕРС Forum */
/* Create Thread Form styles moved to assets/css/pages/create-thread.css */

.user-profile {
    max-width: 800px;
    margin: 2rem auto;
}

.profile-actions {
    margin-top: 2rem;
}

/* Notification Center */
.notification-center {
    position: fixed;
    top: 80px;
    right: 20px;
    max-width: 400px;
    z-index: 1000;
}

.notification-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.notification-item.unread {
    border-left: 4px solid var(--accent-color-1);
    font-weight: 500;
}

.notification-item:hover {
    background: var(--hover-bg);
}

