/* styles */
/* called by your view template */

* {
    box-sizing: border-box;
}

.megatron {
    background-color: #555; /* dark theme for big bright screens */
    width: 100%;
}

body {
    font-family: helvetica, arial, sans-serif;
    margin: 25px;
    /*   width:625px; /* a Medium embed is 700px, we want this one to have a vertical scrollbar (~25px) and 25px margin */
}

h1 {
    font-weight: bold;
    color: pink;
}

.bold {
    font-weight: bold;
}

textarea {
    width: 100%;
    height: 5em;
}

/* p { */
/*   max-width: 600px; */
/* } */

form {
    margin-bottom: 25px;
    padding: 0px;
    display: inline-block;
    width: 100%;
    border-radius: 3px;
}

input {
    display: block;
    margin-bottom: 10px;
    padding: 5px;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 3px;
    font-size: 16px;
}

.boxName,
.timestamp,
.wordcount {
    padding: 3px;
    margin-right: 1em;
    border-radius: 3px;
}

.boxName {
    color: white;
    margin-left: -4em;
}

.boxDesc {
    background-color: #555;
}

.timestamp,
.wordcount {
    background-color: #eee;
    border-right: 2px solid lightgrey;
}

button {
    font-size: 16px;
    border-radius: 3px;
    background-color: lightgrey;
    border: 1px solid grey;
    box-shadow: 2px 2px teal;
    cursor: pointer;
}

button:hover {
    background-color: yellow;
}

button:active {
    box-shadow: none;
}

li {
    margin-bottom: 5px;
}

footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid lightgrey;
}

footer > a {
    color: #bbbbbb;
}

table {
    color: #ccc;
}

th {
    text-align: left;
    min-width: 8em;
}

.boxToggle {
    color: #ccc;
}

.active {
    background-color: cyan;
    color: #333;
}

.nicejob {
    text-decoration: line-through;
}

#systemMessages {
    border-radius: 0.4em;
    border: 2px solid #999;
    padding: 1em;
    margin: 1em;
    min-height: 2em;
    background-color: #fee;
    color: #333;
    display: none;
}

/* speech bubble stylings generated by https://leaverou.github.io/bubbly/ */

.speech-bubble-left,
.speech-bubble-right {
    position: relative;
    border-radius: 0.4em;
    padding: 0.5em;
    min-height: 2em;
}

.speech-bubble-left:after,
.speech-bubble-right:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 0.563em solid transparent;
    border-top: 0;
    margin-top: -0.281em;
}

.speech-bubble-left:after {
    left: 0;
    border-left: 0;
    margin-left: -0.562em;
}

.speech-bubble-right:after {
    right: 0;
    border-right: 0;
    margin-right: -0.562em;
}

.multistream {
    max-width: 1000px;
}

.multistream .box {
    line-height: 1.5em;
    padding: 1.5em 3em 1.5em 5em;
}

#stats {
    /*   position:fixed;
  top:1em;
  left:1200px; */
    float: right;
    width: 600px;
    border-radius: 1em;
    padding-left: 1em;
    padding-right: 1em;
    background-color: #333;
    color: #ccc;
}
