body {
    font-family: BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
}
.container {
    width: 80%;
    margin: 0 auto;
}
.flex {
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-bottom: 15px;
}
.item {
    display: flex;
    justify-content: left;
    align-items: center;
}
.item label {
    text-align: left;
    margin: 10px;
}
.top-section, .middle-section, .bottom-section {
    margin-bottom: 20px;
}
.selector {
    height: 30px;
}
.maxSelector {
    width: 400px;
}
.minSelector {
    width: 70px;
}
.selector:hover {
    cursor: pointer;
}
.output {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 100px;
}
.output textarea {
    width: 100%;
    display: block;
    resize: none;
}
.btn {
    padding: 4px 15px;
    height: 33px;
    margin-left: 6px;
}
.blueBtn {
    color: #fff;
    background: linear-gradient(90deg, #1890ff 0%, #1890ff 100%);
    border: none;
    box-shadow: 0 2px 0 rgba(5, 175, 255, 0.1);
    font-size: 14px;
}
.blueBtn:hover {
    cursor: pointer;
    transform: scale(1.05);
}
.whiteBtn {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
}
.whiteBtn:hover {
    color: #1890ff;
    border: 1px solid #1890ff;
    cursor: pointer;
    transform: scale(1.05);
}
.textLabel {
    margin-top: 5px;
}