/*Novuna image and text*/
.finance_container {
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 2px; /* Space between image and text */
    margin: auto; /* Center the content */
    position: relative;
}

.finance_image {
    flex-shrink: 0; /* Prevents image from shrinking */
    width: 55px; /* Set desired width */
    height: auto; /* Maintain aspect ratio */
}

.finance_text {
    flex: 1; /* Allows text to take up remaining space */
    margin: 0;
    font-size: 12px;
}