html, body
{
    height: auto;
    width: auto;
    min-height: 100%;
}

:root 
{
    --select-border: white;
    --select-focus: white;
    --select-arrow: var(--select-border);
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  color: white;
}

.container
{
    color:white;
    background-color: #2B2E4A;
    display: block;
    flex-direction: column;
    text-align: center;
    width: 100%;
    min-height: 100%;
    border-top: 1px solid black;
    padding-top: 20px;
}

.text_container
{
    display: flex;
    justify-content: center;
    text-align: start;

}

.warning
{
    font-size: 34px;
    color: red;
}

.commands_container
{
    display: flex;
    flex-direction: column;
    text-align: start;
    align-items: center;
    width: 100%;
}

.command_item
{
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 100px;
    background-color: #22253b;
    border: 1px solid black;
    border-radius: 15px;
    padding: 15px 0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}

.text_item
{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    /* padding: 10px !important; */
}

.text_item > div
{
    width: 80%;
}

.command_description, .command_trigger
{
    margin: 10px 15px;
}

.label_text
{
    text-transform: uppercase;
    font-weight: 900;
    max-width: 300px;
    margin-left: 10px;
}

.command_btns
{
    position: absolute;
    right: 7%;
}

.edit_link
{
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.visible_link
{
    width: 32px;
    height: 32px;
    text-decoration: none;
}

.editable_btns
{
    display: flex;
    justify-content: flex-end;
}

.edit_btn_item
{
    margin-right: 20px;
    border: 1px solid black;
    border-radius: 15px;
    padding: 10px 15px;
    cursor: pointer;
}

.select
{
    width: 100%;
    min-width: 15ch;
    max-width: 30ch;
    border: 1px solid var(--select-border);
    border-radius: 0.25em;
    padding: 0.25em 0.5em;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;
    background-color: transparent;
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
    margin-left: 10px;
    margin-bottom: 10px;
}

.select::after
{
    justify-self: end;
}

select, .select::after
{
    grid-area: select;
}

.select::after 
{
  content: "";
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  grid-area: select;
}

select:focus + .focus
{
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 2px solid var(--select-focus);
    border-radius: inherit;
}

select:focus
{
    color: black;
}

.select:not(.select--multiple)::after

select[multiple]
{
    padding-right: 0;
    height: 6rem;
}

select[multiple] option
{
    white-space: normal;
}

.select--disabled 
{
    cursor: not-allowed;
    background-color: #eee;
    background-image: linear-gradient(to top, #ddd, #eee 33%);
}

@media only screen and (max-width: 1200px) 
{

}

@media only screen and (max-width: 992px) 
{

}

@media only screen and (max-width: 768px) 
{

}

@media only screen and (max-width: 480px) {
    
}

@media only screen and (max-width: 320px) {
    
}