/* SCROLLBAR ---------------------------------------- */

/* Width */
::-webkit-scrollbar {
    width: 16px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 8px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: red; 
    border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

/* DEFAULTS ----------------------------------------- */

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

* {
    box-sizing: border-box;
}

/* -------------------------------------------------- */

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #191919;
    font-family: 'Open Sans', Roboto;
    font-size: 14px;
}

#projects-container {
    position: fixed;
    top: 40px;
    bottom: 400px;
    left: 40px;
    right: 40px;
    overflow-y: scroll;

}

#projects-list {
    display: table;
    border-spacing: 0 4px;
    width: calc(100% - 10px);
}

#projects-list .tablerow {
    background-color: #252525;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: table-row;
    margin-bottom: 5px;
}

#projects-list .tablerow div {
    display: table-cell;
    padding: 10px 20px;
}

#projects-list .tablerow div:first-child {
    width: 1%;
    white-space: nowrap;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#projects-list .tablerow div:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#projects-list .tablerow:hover {
    color: red;
}

#projects-list .tablerow span {
    display: block;
}

.strong {
    font-weight: bold;
    font-size: 15px;
}

.gray {
    color: gray;
    font-size: 14px;
}

.fr { float: right; font-size: 18px; margin-top: 10px; font-weight: normal; }

#json {
    position: fixed;
    height: 390px;
    bottom: 0;
    left: 600px;
    right: 0;
    overflow: scroll;
    padding: 0;
    margin: 0;
    background-color: white;
}
