/* General body and layout styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

.sfi-svg-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.sfi-svg-container img {
    max-width: 125px; /* Adjust as needed */
    max-height: 125px;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}

.sfi-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
    margin-top: 1px; /* Add margin to the top */
}

/* Logo and SVG styles */
.sfi-svg-logo {
    margin-bottom: 0px;
    max-width: 100%;
    height: auto;
}

/* Link styles for SVG and PNG */
.sfi-svg-link,
.sfi-png-link {
    color: #007bff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px;
    display: inline-block;
}

.sfi-svg-link:hover,
.sfi-png-link:hover {
    color: #0056b3;
}

/* Add styles for the PNG size options */
.sfi-png-export-options {
    display: none;
    margin-top: 0px;
}

.sfi-png-size-options {
    display: block; /* Stack vertically */
    margin-top: 10px;
}

.sfi-png-size {
    text-decoration: none;
    color: inherit;
    display: block; /* Make each size option appear on a new line */
    margin: 5px 0; /* Space between size options */
    font-size: 14px;
}

.sfi-png-size span {
    font-size: 12px;
    color: gray; /* Smaller text for pixel sizes */
}

.separator {
    margin: 0 10px;
    color: #333; /* Adjust separator color as needed */
}

.sfi-png-size, .separator {
    font-size: 14px; /* Adjust font size if needed */
    font-weight: bold;
}

.sfi-png-size:hover {
    color: #0056b3;
    text-decoration: underline;
}

.sfi-png-size:last-child {
    margin-right: 0;
}

.custom-tooltip {
    position: absolute; /* So we can position it */
    background-color: #000; /* Or any color you prefer */
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 5px;
    border-radius: 10px;
    z-index: 1000; /* Ensure it's above other elements */
    white-space: nowrap; /* Prevent wrapping */
    pointer-events: none; /* So you can click through it if needed */
}