body {
    background-color: rgba(127, 127, 127, 0.9);
}
.parent {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
    /* border: 1px solid black; /* Just for visualization */
}
.child {
    width: 400px;
    height: 400px;
    /* background-color: lightblue; /* Just for visualization */
}
#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;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(64, 64, 64, 0.9);
    padding: 10px;
}

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

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

.used-color:hover {
    border: 2px 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 */
}

.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;
}
