/* Obvestila */
.notifications-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.notifications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.notifications-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.notification-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.notification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.notification-item h3 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.notification-item p {
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.notification-meta {
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.edit-notification-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.edit-notification-btn:hover {
    background-color: #0056b3;
}

.edit-notification-btn i {
    font-size: 0.9em;
} 