.poi-favorite-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #333;
}

.poi-favorite-button:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.poi-favorite-button.active {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.poi-favorite-button.active i {
    color: #ffc107;
}

.poi-favorite-button i {
    font-size: 1.2rem;
}

.poi-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poi-notification-item {
    padding: 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.poi-notification-item.unread {
    background: #f0f4ff;
    border-left-color: #667eea;
}

.poi-notification-item.read {
    opacity: 0.7;
    border-left-color: #ccc;
}

.poi-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.poi-notification-type {
    font-weight: 500;
    color: #667eea;
}

.poi-notification-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.poi-notification-content {
    color: #555;
    line-height: 1.6;
}

