body {
    background-color: rgba(127, 127, 127, 0.9);
}

#svg-container {
    width: 100vw;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #472f2f;
}
#svg-thumbs {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #472f2f;
}

svg {
    width: 90%;
    height: 90%;
}
.site-title {
    font-size: 18pt;
    font-weight: bold;
    color: white;
}
.controls {
    display: flex;        
    flex-wrap: wrap; /* Allow elements to wrap onto new lines */
    gap: 8px; /* Adds spacing between elements */
    align-items: center;
    justify-content: space-around;
    background-color: rgba(64, 64, 64, 0.9);
    /* padding: 10px; */
} 




.used-colors {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
}

.used-color {
    width: 30px;
    height: 30px;
    margin: 1px;
    border: 1px solid #000;
    cursor: pointer;
}

.used-color:hover {
    border: 1px solid #FF0000;
}

#svg-thumbs {
    display: flex;
    flex-wrap: wrap; /* Enables wrapping of thumbnails */
    gap: 10px; /* Adds spacing between thumbnails */
    justify-content: flex-start; /* Align items to the left */
    padding: 10px; /* Optional: Add padding inside the container */
    max-width: 100%; /* Ensure it doesn't exceed container size */
}
/* #svg-thumbs {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
} */

#svg-thumbs.show {
    max-height: 500px; /* Adjust based on content height */
    opacity: 1;
}

.thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px; /* Adjust size as needed */
    margin: 5px;
}

.svg-thumbnail {
    width: 200px; /* Thumbnail width */
    height: 200px; /* Thumbnail height */
    object-fit: contain; /* Ensure SVG fits within bounds */
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
