/* Topic reusable-textarea-component */
#lorem-ipsum-topic.reusable-textarea-wrapper {
    border: 2px solid black;
    border-bottom: 5px solid black;
    padding: 10px 15px;
    margin-bottom: 20px;
}

#lorem-ipsum-topic .reusable-textarea-component {
    min-height: 60px;
}

/* Input Controls */
.lorem-ipsum-input-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.lorem-ipsum-input-controls button[type='submit'] {
    box-shadow: 3px 3px;
}

.lorem-ipsum-input-controls button[type='submit']:disabled {
    background-color: lightgray;
    cursor: not-allowed;
}

.lorem-ipsum-select-wrappers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.lorem-ipsum-select-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.lorem-ipsum-select-wrapper label {
    display: none;
    font-size: 14px;
}

.lorem-ipsum-select-wrapper select {
    max-width: 185px;
    color: black;
    background-color: white;
    border: 2px solid black;
    outline: none;
    padding: 5px;
    font-size: 14px;
    box-shadow: 1px 1px;
}

/* Output Section */
.lorem-ipsum-output-section {
    border: 2px solid black;
    margin-top: 10px;
}

.lorem-ipsum-output-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f0f0f0;
    border-bottom: 2px solid black;
    font-weight: 500;
    font-size: 14px;
}

.lorem-ipsum-copy-btn {
    font-size: 14px;
    padding: 5px 7px;
    box-shadow: 1px 1px;
}

/* Result reusable-textarea-component */
.lorem-ipsum-output-section .reusable-textarea-wrapper {
    border: 2px solid black;
    border-bottom: 5px solid black;
    padding: 10px 15px;
}

.lorem-ipsum-output-section .reusable-textarea-component {
    min-height: 300px;
}

@media (max-width: 768px) {
    .lorem-ipsum-select-wrappers {
        flex-direction: column;
        align-items: flex-start;
    }

    .lorem-ipsum-select-wrapper select {
        font-size: 13px;
    }
}
