.custom-HostnameCalcInput {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-HostnameCalcInput input {
    width: calc(70% - 10px);
    padding: 10px;
}

.custom-HostnameCalcInput button {
    width: calc(30% - 10px);
    border: none;
    padding: 10px;
    border-radius: 5px;
}

.custom-HostnameCalcOutput {
    position: relative;
    width: 100%;
    background-color: #c8cede;
    padding: 20px;
    border-radius: 5px;
}

.custom-HostnameCalcOutput input {
    border: none;
    background-color: transparent;
    width: 100%;
}

.custom-HostnameCalcOutput button {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 5px;
    border: none
}