body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    overflow-y: hidden;
}

* {
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.container {
    padding: 0;
}

.pouch-row {
    margin: 0;
    min-height: 50px;
}

.pouch-box {
    padding: 4px;
    text-align: center;
    vertical-align: center;
}

.ls-col-fifth {
    flex: 0 0 auto;
    width: 20%;
}

.pouch-box span {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    min-height: 50px;
    background-color: #E3F5F4; /* Background color for visibility */
    border-radius: 5px;

    text-align: center;
    overflow: hidden;
}

.pouch-box span.pouch-selected { /* DB Turquoise*/
    background-color: #3CB5AE ;
}

.pouch-box.pouch-type-toggle span {
    border: 0px solid #008984;
}

.pouch-box span.pouch-disabled {
    background-color: white !important;
    font-style: italic;
}



/* custom colors for sections */
#pouch-box-transport-unit .pouch-box span { /* DB Pink */
    background-color: #F9D2E5 ; /* #FDEEF8; */
}

#pouch-box-transport-unit .pouch-box span.pouch-selected {
    background-color: #EE7BAE ;/*#F4AECE;*/
} 

#pouch-box-transport-unit .pouch-box.pouch-type-toggle span {
    border-color: #DB0078 ;
}

#pouch-box-flooring .pouch-box span { /* DB Orange*/
    background-color: #FCE3B4 ;
}

#pouch-box-flooring .pouch-box span.pouch-selected {
    background-color: #F8AB37;
}

#pouch-box-flooring .pouch-box.pouch-type-toggle span {
    border-color: #D77B00 ;
}

#pouch-box-events .pouch-box span { /* DB light green */
    background-color: #C9EB9E;
}

#pouch-box-events .pouch-box span.pouch-selected {
    background-color: #78BE14;
}

#pouch-box-events .pouch-box.pouch-type-toggle span {
    border-color: #508B1B;
}


#pouch-box-vehicle .pouch-box span { /* DB blue */
    background-color: #B4D5F6;
}

#pouch-box-vehicle .pouch-box span.pouch-selected {
    background-color: #347DE0;
}

#pouch-box-vehicle .pouch-box.pouch-type-toggle span {
    border-color: #0C3992;
}

#pouch-box-surroundings .pouch-box span { /* DB cool placeholder 200/400/600 */
    background-color: #DDDED6  ;
}

#pouch-box-surroundings .pouch-box span.pouch-selected {
    background-color: #9C9A8E  ;
}

#pouch-box-surroundings .pouch-box.pouch-type-toggle span {
    border-color: #747067  ;
}


h4, .title {
    font-size: 14pt;
    margin: 0;
    padding: 0;
    margin-bottom: -2px;
    margin-top: 2px;
    margin-left: 5px;
}

h4:first-of-type {
    margin-top: 0;
}

div#pouch-statusbar {
    position: fixed;
    top: 0;
    right: 0;
    padding-left: 5px;
    width: 65vw;
    z-index: 1000000;
    background-color: gray;
    font-size: 10pt;
    color: white;
    border-bottom-left-radius: 5px;
}