body {
    background: fixed;
    background-image: linear-gradient(to left top, #097790, #006c8a, #006184, #00567c, #0b4b74, #184878, #26457b, #35417c, #514187, #6f3e8d, #8d378e, #ab2b89);
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(222, 222, 222);
    text-align: center;
    margin: 12px;
}

.box {
    background: #332f39;
    margin: auto;
    margin-top:16px;
    margin-bottom:16px;
    padding: 30px;
    border: thin solid black;
    border-radius: 30px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.11), 
      0 2px 2px rgba(0,0,0,0.2), 
      0 4px 4px rgba(0,0,0,0.2), 
      0 8px 8px rgba(0,0,0,0.2), 
      0 16px 16px rgba(0,0,0,0.2), 
      0 32px 32px rgba(0,0,0,0.15);
    max-width: 600px;
}
.form{
    display: inline-block;
    text-align: left;
    width: 80%;
}
.form input {
    width: 100%;
    margin-bottom:8px;
}
input[type="checkbox"]{
    width: auto;
}
a:link {
    color: rgb(174, 47, 174);
}

/* visited link */
a:visited {
    color: rgb(76, 122, 171);
}

/* mouse over link */
a:hover {
    color: rgb(203, 64, 215);
}

/* selected link */
a:active {
    color: blue;
}
#errorBox{
    color: #f58000;
    font-weight: bold;
}
.text-success{
    color: #00f514;
    font-weight: bold;
}
.console {
    overflow: auto;
    text-align: left;
    background-color: rgb(30, 30, 30);
    color: green;
    min-height: 200px;
    padding: 8px;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.11), 
    inset 5px 2px 2px 2px rgba(0,0,0,0.2), 
    inset 5px 4px 4px rgba(0,0,0,0.2), 
    inset  0 8px 8px rgba(0,0,0,0.2), 
    inset   0 16px 16px rgba(0,0,0,0.2), 
    inset  0 32px 32px rgba(0,0,0,0.15);
}

.flexrow {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px;
}

form{
    width: 100%;
}
.a-styled {
    text-decoration: none; 
    color:blue;
    font-weight: bold;
}
.a-unstyled, .a-unstyled > *{
    color: inherit;
    text-decoration: none; 
}
.a-unstyled:link { color: inherit;text-decoration: none; }
.a-unstyled:visited { color: inherit;text-decoration: none; }
.a-unstyled:hover { color: inherit;text-decoration: none; }
.a-unstyled:active { color: inherit;text-decoration: none; }
.button {
    display:inline-block;
    background-color: #181818;
    color: rgb(222, 222, 222);
    border: thin solid white;
    width: 100%;
    margin: 10px 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0,0,0,0.11), 
      0 2px 2px rgba(0,0,0,0.2), 
      0 4px 4px rgba(0,0,0,0.2), 
      0 8px 8px rgba(0,0,0,0.2), 
      0 16px 16px rgba(0,0,0,0.11);
    background-color:#734cad60;
}
.button:hover {
    background:linear-gradient(to bottom, #734cad 5%, #644b8a 100%);
    background-color:#734cad;
}
.button:active {
    position:relative;
    top:1px;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: 10px!important;
    scrollbar-color: gray rgb(30, 30, 30,0);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px!important;
}

*::-webkit-scrollbar-track {
    background: rgb(30, 30, 30,0);
}

*::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px;
    border: 3px solid rgb(30, 30, 30,0);
}

#resultBox{
    display:none;
}
#hashBox{
    font-size:0.7em;
    word-break: break-all;
}