/* Notifications Section */
.notifications-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notifications-section h2 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.notifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #dddddd;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.notification-item.unread {
    background-color: #eaf4fe;
    border-color: #007bff;
}

.notification-item.important {
    background-color: #ffe6e6;
    border-color: #ff4d4d;
}

.notification-item:hover {
    background-color: #f0f8ff;
    border-color: #0056b3;
}

.notification-content {
    flex: 1;
    margin-right: 1rem;
}

.notification-content p {
    margin: 0;
    font-size: 1rem;
    color: #555555;
}

.notification-content small {
    font-size: 0.8rem;
    color: #888888;
}

.notification-actions .mark-read-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.notification-actions .mark-read-button:hover {
    background-color: #0056b3;
    cursor: pointer;
}

.no-notifications {
    text-align: center;
    font-size: 1rem;
    color: #999999;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-content {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .mark-read-button {
        align-self: flex-end;
    }
}
