.tool-box {
    border-radius: 1rem;
    box-shadow: 0px 2px 60px 0px #0000000d;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.inner__tool-box {
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.725rem;
    position: relative;
    min-height: 350px;
    background-color: white;
    box-shadow: 0px 2px 60px 0px #0000000d;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.form-group label {
    font-weight: bold;
    font-size: 18px;
}
.custom-input {
    border: 1px solid #d0d5dd;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #1018280d;
}

.output-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.color-info {
    width: 100%;
    display: flex;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    margin-top: 1rem;
}
.color-info > div {
    padding: 1rem;
}
.color-preview {
    flex: 1;
    background-color: #7f56d9;
}
.color-stats {
    flex: 2;
}
.color-stats strong {
    font-weight: bold;
    font-size: 18px;
}
.stats {
    display: flex;
    gap: 1rem;
}
.stats .attribute {
    min-width: 50px;
    padding-right: 10px;
}
.stats .value {
    font-weight: bold;
}
