.input-form {
    background-color: var(--color-white);
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
    padding: 1em 1em;
    margin-top: 1em;
    margin-bottom: 1em;
}
.input-form span, label {
    font-size: 0.8em;
    color: var(--secondary-text);
}
.input-text-01 {
    display: block;
    padding: 8px;
    border: none;
    width: 100%;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 1em;
}

.material-symbols-outlined {
    font-variation-settings:
            'FILL' 0,
            'wght' 600,
            'GRAD' 0,
            'opsz' 48;
    cursor: pointer;
    /* vertical center */
    display: flex;
    justify-content: center;
    align-items: center;

}

.picker-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, auto))
}
.preview-wrap{
    margin: 1em;
    border: 2px solid var(--secondary-text);
}
.preview-area{
    min-height: 250px;
    background-color: #69c8f2;
    text-align: center;
    /* text vertical center */
    display: flex;
    justify-content: center;
    align-items: center;
    /* font size */
    font-size: 40px;
    font-weight: bold;
    /* break line */
    word-break: break-all;
}
.pickr-container{
    margin: 0.5em;
    display: grid;
    grid-template-columns: 2em 1fr;
}

.color-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, auto));
    gap: 0.5em;

}

.color-copy{
    margin: 0 0.5em;
    padding: 0.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border:2px solid var(--secondary-text);
    border-radius: 0.5em;
    font-size: 0.9em;
}

.button-wrap{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}