.drawing-idea-generator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.6;
    padding: 10px 20px;
    /* border: 1px solid lightgray; */
    border-radius: 10px;
    font-size: 25px;
    text-align: center;
}

.drawing-idea-generator {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 18px;
    flex-direction: column;
}

.drawing-idea-field {
    position: relative;
}

.drawing-idea-generator label {
    position: absolute;
    background-color: white;
    line-height: 1;
    padding: 0px 3px 0px 3px;
    top: -7px;
    left: 10px;
    font-size: 12px;
}

.drawing-idea-generator input {
    color: black;
    background-color: white;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px 10px !important;
    font-size: 24px;
    width: 100%;
    text-align: center;
    line-height: 2;
    height: unset !important;
}

.drawing-idea-generator input:focus {
    border: 1px solid black;
}

.drawing-idea-generator button {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    padding: 15px 15px;
    justify-content: center;
    font-size: 20px;
}

.drawing-idea-generator button:disabled {
    background-color: gray;
}

.image-result-wrapper {
    margin-top: 30px;
    margin-bottom: 50px;
}

.image-result {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-result img {
    display: none;
    max-width: 100%;
    max-height: 100%;
    width: 512px;
    height: 512px;
    object-fit: contain;
    border: 1px solid black;
    border-radius: 5px;
}

.pdf-opener-wrapper {
    display: none;
}

.spinner-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    width: 512px;
    height: 512px;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid black;
    border-radius: 5px;
}

.spinner {
    display: block;
    width: 70px;
    height: 70px;
    border: 10px solid lightgray;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.drawing-idea-generator-notice {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #cf2e2e;
    font-weight: bold;
    margin-bottom: 20px;
}

.example-results-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.example-results-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.an-example-item {
    padding-bottom: 15px;
    width: 350px;
    max-width: 100%;
    max-height: 100%;
}

.an-example-item img {
    max-width: 100%;
    max-height: 100%;
    width: 350px;
    height: 350px;
    object-fit: contain;
    border: 1px solid black;
    border-radius: 5px;
    /* box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2); */
    margin-bottom: 5px;
}

.example-results-hr {
    width: 100%;
    background-color: lightgray;
    margin-top: 50px;
}

.example-results-more-link {
    margin-bottom: 20px;
}
