/* Steve Notifications Styles */

.notification-badge {
    position: absolute;
    top: -3px;
    right: -20px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.notification-badge.loading {
    background: #007cba;
    animation: pulse 1.5s infinite;
}

.steve-notifications-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 300px;
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
}

.steve-notifications-tooltip .notification-item {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.steve-notifications-tooltip .notification-item:hover {
    background-color: #f5f5f5;
}

.steve-notifications-tooltip .notification-item.clickable {
    cursor: pointer;
}

.steve-notifications-tooltip .notification-title {
    font-weight: bold;
    margin-bottom: 4px;
    color: #333;
}

.steve-notifications-tooltip .notification-message {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

.steve-notifications-tooltip .notification-date {
    color: #999;
    font-size: 0.8em;
    margin-top: 6px;
}

.steve-notifications-tooltip .no-notifications {
    padding: 15px;
    color: #666;
    text-align: center;
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; transform: scale(1); }
}