* {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

body {
    background-color: #21252b
}

input {
    text-indent: 10px;
}

select {
    text-indent: 5px;
    border: 2px inset white;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .25);
    margin: 3px auto;
    text-decoration: none;
}

option {
    color: black;
    text-align: left;
}

a {
    align-self: center;
    border: 2px inset white;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .25);
    text-decoration: none;
    padding-top: 5px;
    -webkit-user-select: none;
    user-select: none;
}

a:hover {
    background-color: rgba(128, 128, 128);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border-left: 1px solid white;
}

::-webkit-scrollbar-thumb {
    background: white;
    border-radius:5px;
}

.generic_text_small {
    font-size: 20px;
}

.generic_text_large {
    font-size: 30px;
}

.generic_text {
}

.centered {
    text-align: center;
}

.flex {
    display: flex;
}

.flexh {
    display: flex;
}

.flexv {
    display: flex;
    flex-direction: column;
}

.flexfill {
    flex: 1;
}

.dot {
    width: 10px;
    height: 10px;
    max-width: 10px;
    max-height: 10px;
    border-radius: 50%;
    display: inline-block;
    top: 30px;
    margin: 0px 10px;
}

.red {
    background-color: red;
}

.green {
    background-color: lime;
}

.flex_spacer {
/*     border: 3px solid lightblue; */
    flex-grow: 1;
}

.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal_content {
    display: grid;
    background-color: #21252b;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 3px solid white;
    border-radius: 10px;
/*    width: 400px;*/
    width: max-content;
    grid-template-columns: auto;
/*    max-width: 50%; /* Could be more or less, depending on screen size */*/
}

.modal_title {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.modal_message {

}

.modal_button {
    margin: 10px;
    padding: 5px 10px;
/*    width: 100px;*/
    text-align: center;
    height: 25px;
    width: auto;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}