.notifications-container {
    min-height: 200px;
}

.notification-list-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.notification-list-item:hover {
    background-color: #f8f9fa;
}

.notification-list-item.active {
    background-color: #e7f3ff;
    border-left: 3px solid #007bff;
}

.notification-list-item-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.notification-list-item-date {
    font-size: 12px;
    color: #6c757d;
}

.notification-content-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.notification-content-body {
    color: #555;
    line-height: 1.6;
}

.notification-content-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
    border-radius: 8px;
}

