* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
    border: 1px solid lightgrey;
    height: 900px;
    min-height: fit-content;
    width: 70%;
    background-color: white;
    border-radius: 10px;
    margin-top: 25px;
}

label {
    text-align: left;
    margin-left: 12.5%;
}

input[type="number"] {
    width: 70%;
    height: 45px;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
    margin-left: 12.5%;
}

input[type="number"]:hover {
    border: 2px solid lightgrey;
    box-shadow: 0px 0px 20px -17px;
}

input[type="number"]:active {
    transform: scale(0.95);
}

input[type="number"]:focus {
    border: 2px solid grey;
}

button {
    width: 50%;
    max-width: 70%;
    height: 45px;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
    background-color: white;
    margin-left: 25%;
}

button:hover {
    border: 2px solid lightgrey;
    box-shadow: 0px 0px 20px -17px;
    cursor: pointer;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    border: 2px solid grey;
}

.hidden {
    display: none !important;
}

.loading {
    z-index: 2;
    width: 80%;
    height: 70vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
}


input:read-only {
    border-style: dotted;
    cursor: not-allowed;
    color: #777;
}

input:disabled {
    background-color: #f0f2f5;
}

pre {
    margin-bottom: 50px;
}

h1 {
    margin-top: 20px;
    text-align: center;
}

::selection {
    color: #000;
    background-color: #c1daf3;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px -15px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #eeeff1;
    border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #b5b5b7;
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #818282;
    border-radius: 20px;
}

.fastGenerate {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.fastGenerate .item {
    width: fit-content;
    height: 35px;
    background-color: white;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border: 1.5px solid lightgrey;
    transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1) 0ms;
    user-select: none !important;
}

.fastGenerate .item:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.fastGenerate .item:active {
    border-color: #AAA;
    transform: scale(0.95);
}

.tips {
    border: 1.5px solid lightgrey;
    background-color: white !important;
    padding: 10px 20px;
    margin-top: 25px;
    font-size: 12px;
    max-width: 700px;
}

select {
    width: 50%;
    margin: 5px auto;
    padding: 7px;
    border-radius: 12px;
    cursor: pointer;
    outline: none;
    border: 1.5px solid lightgrey;
}

#unique {
    width: 50%;
    cursor: col-resize;
}

.range {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

output {
    width: 50px;
}


.tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    padding: 4px;
    gap: 15px;
}

.tabs .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white !important;
    border: 1px solid lightgrey;
    border-radius: 7px;
    padding: 20px;
    transition: all 0.2s ease-in-out 0ms;
    user-select: none;
}

.item:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.item:active {
    border-color: #AAA;
    transform: scale(0.95);
}

p a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black;
}