.board {
    background-color: #80a0c0;
    border: 2px solid black;
    border-radius: 4px;
    margin-top: 12px;
    margin-bottom: 10px;
    padding: 12px;
    min-height: 200px;
}

.board h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0px 8px 2px 8px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.board-stage-header {
    white-space: nowrap;
    border: 2px solid black;
    border-radius: 4px 4px 0px 0px;
    padding: 8px;
    margin: -4px -12px 0px -4px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.board-stage {
    display: inline-table;
    border: 2px solid #f8f8f8;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin: 4px 2px;
    padding: 4px 12px 8px 4px;
    width: 168px;
    background-color: #d4d4e0;
}

.board-stage-body {
    height: 280px;
    overflow-y: auto;
    padding: 3px;
}

.board-stage-backlog .board-stage-header {
    background-color: #cfc0cf;
}

.board-stage-candidate .board-stage-header {
    background-color: #f0cfa4;
}

.board-stage-progress .board-stage-header {
    background-color: #f0f0a4;
}

.board-stage-review .board-stage-header {
    background-color: #a0a0f0;
}

.board-stage-done .board-stage-header {
    background-color: #a4f0a4;
}

.board-task {
    position: relative;
    display: block;
    border: 2px solid black;
    background-color: #eee;
    border-radius: 2px;
    margin: 4px 0px;
    padding: 6px 22px;
    transition-property: all;
    transition-duration: 50ms;
    transition-timing-function: linear;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.board-task-important {
    font-weight: bold;
}

.board-task-assigned {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    border: 1px solid black;
}

.board-task-assigned-inner {
    border-radius: 50%;
    border: 1px solid #555;
    width: 100%;
    height: 100%;
}

.board-task-score {
    position: absolute;
    right: 4px;
    bottom: 8px;
    font-size: 0.75em;
    /* display: inline-block; */
    /* margin-left: 32px; */
}

.board-task:hover {
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
    transform: translate(-2px, -1px);
}

.board-task-chore {
    background-color: #dc9;
}

.board-task-chore .board-task-score {
    display: none;
}

.board-task-bug {
    background-color: #eaa;
}

.board-task-with-bug {
    padding-left: 1px;
    color: #a00;
}

.board-task-progress-outer {
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 3px;
    height: 6px;
    border-radius: 3px;
    border: 1px solid #555;
    margin: 0px 2px;
}

.board-task-progress-inner {
    height: 100%;
    border-radius: 3px;
    background-color: #0d0;
    transition-property: width;
    transition-duration: 200ms;
    transition-timing-function: linear;
}

.board-task-complete {
    border-color: #080;
    box-shadow: 1px 1px 6px rgba(0, 255, 0, 0.5);
}

/* Tutorial-related stuff */

.onboarding-wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.board-stage-tutorial {
    border-bottom: none;
}

.board-stage-tutorial .board-stage-body {
    max-height: 120px;
    border-bottom: none;
}

@-webkit-keyframes drag-to-next {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(175px);
    }
    100% {
        transform: translateX(175px);
    }
}

@keyframes drag-to-next {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(175px);
    }
    100% {
        transform: translateX(175px);
    }
}

.board-task-tutorial-4 {
    position: absolute;
    left: 9px;
    top: 47px;
    width: 120px;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
    transform: translate(-2px, -1px);
    -webkit-animation: drag-to-next 2s normal ease-in infinite;
            animation: drag-to-next 2s normal ease-in infinite;
}

.tutorial-drag {
    position: absolute;
    left: 20px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 15px;
    height: 15px;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25);
}

@-webkit-keyframes drag-to-human {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(64px);
    }
    100% {
        transform: translateY(64px);
    }
}

@keyframes drag-to-human {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(64px);
    }
    100% {
        transform: translateY(64px);
    }
}

.board-task-tutorial-5 {
    position: absolute;
    z-index: 90;
    left: 6px;
    top: 0px;
    width: 120px;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
    transform: translate(-2px, -1px);
    -webkit-animation: drag-to-human 2s normal ease-in infinite;
            animation: drag-to-human 2s normal ease-in infinite;
}

/* wobble animation */

@-webkit-keyframes wobble {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(0px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(0px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0px);
    }
}

.alert-message {
    color: #a00;
    font-weight: bold;
    font-size: 0.85rem;
    height: 0.85rem;
    margin-left: 4px;
    margin-bottom: 4px;
}

.alert-message-show {
    -webkit-animation-name: wobble;
            animation-name: wobble;
    -webkit-animation-duration: 0.15s;
            animation-duration: 0.15s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: 2;
            animation-iteration-count: 2;
}

.alert-message-hide {
    visibility: hidden;
}

.bug-outer {
    display: inline-block;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    padding: 2px;
}

.bug-body {
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    background-color: black;
    width: 10px;
    height: 12px;
    border-radius: 45%;
}

.bug-eye {
    display: inline-block;
    border-radius: 50%;
    width: 2px;
    height: 3px;
    margin-left: 1px;
    margin-right: 2px;
    margin-bottom: 3px;
    background-color: white;
}

.bug-arms {
    margin-top: -12px;
    width: 18px;
    height: 8px;
    border-radius: 50% 50% 0% 0%;
    border-top: 2px solid black;
    margin-left: auto;
    margin-right: auto;
}

.bug-arms-extra {
    margin-top: -4px;
    width: 14px;
}

.bug-arms-extra-more {
    margin-top: -4px;
    border-left: none;
    border-right: none;
    width: 16px;
}

@-webkit-keyframes move-bug {
    
    from {
        left: 20%;
        top: 10%;
        transform: scale(0.0);
    }

    14% {
        left: 20%;
        top: 10%;
        transform: scale(0.0);
    }

    20% {
        left: 20%;
        top: 10%;
        transform: scale(1.0);
    }
  
    40% {
        left: 20%;
        top: 92%;
        transform: rotate(0);
    }

    45% {
        transform: rotate(-90deg);
    }

    60% {
        left: 85%;
        top: 92%;
        transform: rotate(-90deg);
    }

    65% {
        transform: rotate(-180deg);
    }

    80% {
        left: 85%;
        top: 10%;
        transform: scale(1.0) rotate(-180deg);
    }

    to {
        left: 80%;
        top: 10%;
        transform: scale(0.0) rotate(-180deg);
    }
}

@keyframes move-bug {
    
    from {
        left: 20%;
        top: 10%;
        transform: scale(0.0);
    }

    14% {
        left: 20%;
        top: 10%;
        transform: scale(0.0);
    }

    20% {
        left: 20%;
        top: 10%;
        transform: scale(1.0);
    }
  
    40% {
        left: 20%;
        top: 92%;
        transform: rotate(0);
    }

    45% {
        transform: rotate(-90deg);
    }

    60% {
        left: 85%;
        top: 92%;
        transform: rotate(-90deg);
    }

    65% {
        transform: rotate(-180deg);
    }

    80% {
        left: 85%;
        top: 10%;
        transform: scale(1.0) rotate(-180deg);
    }

    to {
        left: 80%;
        top: 10%;
        transform: scale(0.0) rotate(-180deg);
    }
}

/* animate this to move around the screen */

.main-menu-bug {
    position: absolute;
    left: 64px;
    -webkit-animation-duration: 72s;
            animation-duration: 72s;
    -webkit-animation-name: move-bug;
            animation-name: move-bug;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

@-webkit-keyframes move-bug-arms-1 {
    
    from {
        transform: scaleX(1.) rotate(-25deg);
    }

    50% {
        transform: scaleX(1.25);
    }

    to {
        transform: scale(1.) rotate(25deg);
    }
}

@keyframes move-bug-arms-1 {
    
    from {
        transform: scaleX(1.) rotate(-25deg);
    }

    50% {
        transform: scaleX(1.25);
    }

    to {
        transform: scale(1.) rotate(25deg);
    }
}

@-webkit-keyframes move-bug-arms-2 {
    
    from {
        transform: scaleX(1.);
    }

    15% {
        transform: scaleX(1.);
    }

    65% {
        transform: scaleX(1.25);
    }

    to {
        transform: scale(0.8);
    }
}

@keyframes move-bug-arms-2 {
    
    from {
        transform: scaleX(1.);
    }

    15% {
        transform: scaleX(1.);
    }

    65% {
        transform: scaleX(1.25);
    }

    to {
        transform: scale(0.8);
    }
}

/* animate the bug's arms */

.main-menu-bug .bug-arms {
    -webkit-animation-name: move-bug-arms-1;
            animation-name: move-bug-arms-1;
    -webkit-animation-duration: 250ms;
            animation-duration: 250ms;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

.main-menu-bug .bug-arms-extra {
    -webkit-animation-name: move-bug-arms-2;
            animation-name: move-bug-arms-2;
    -webkit-animation-duration: 250ms;
            animation-duration: 250ms;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

.main-menu-bug .bug-arms-extra-more {
    -webkit-animation-name: move-bug-arms-1;
            animation-name: move-bug-arms-1;
    -webkit-animation-duration: 280ms;
            animation-duration: 280ms;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

.status-top {
    background-color: #f5f5f5;
    border-bottom: 2px solid black;
    border-top: 2px solid black;
    padding: 8px;
    font-size: 1.2em;
}

.status-top button {
    font-size: 1.25rem;
    background-color: transparent;
    border-color: transparent;
    margin: 0px 4px;
    border: transparent;
    border-radius: 50%;
    height: 2.2rem;
}

.status-top button:hover {
    background-color: rgba(0, 40, 255, 0.5);
}

.status-top button:active {
    border: transparent;
    background-color: rgba(0, 40, 255, 1.0);
}

.status-top .speed-fast {
    letter-spacing: -0.22em;
}

.status-top .speed-faster {
    letter-spacing: -0.4em;
}

.status-top .btn-sound {
    display: inline-block;
    margin-left: 8px;
    margin-right: 16px;
}

.speed-set {
    color: green;
}

@-webkit-keyframes speed-pause {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.14);
        color: #c30;
    }
    100% {
        transform: scale(1.0);
    }
}

@keyframes speed-pause {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.14);
        color: #c30;
    }
    100% {
        transform: scale(1.0);
    }
}

.speed-paused {
    -webkit-animation-name: speed-pause;
            animation-name: speed-pause;
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
}

.clock-outer {
    display: block;
    height: 24px;
    border-radius: 40px;
    border: 4px solid black;
    background-color: #f5f5f5;
    margin: 0px 12px;
    padding: 3px;
}

.clock-inner {
    height: 100%;
    border-radius: 20px;
    background-color: #555;
}

.status-score {
    float: right;
    margin-right: 12px;
    margin-left: auto;
    margin-top: auto;
}

.human-outer {
    display: inline-block;
    border: 2px solid black;
    background-color: white;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    padding: 4px 12px;
    text-align: center;
    margin: 8px;
    transition-property: transform;
    transition-duration: 440ms;
    transition-timing-function: cubic-bezier(0.96, 0.04, 0.795, 0.035);
}

.human-outer-up {
    transform: translateY(-64px);
}

.human-activity {
    height: 45px;
    padding: 4px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
}

.human-head {
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    border: 4px solid black;
    width: 40px;
    height: 44px;
    border-radius: 45%;
}

.ceo .human-head {
    border-radius: 25%;
}

.human-eye {
    display: inline-block;
    border-radius: 50%;
    border: 2px solid black;
    width: 10px;
    height: 12px;
    margin: 2px;
    background-color: white;
}

.you .human-eye {
    border-radius: 25%;
}

.ceo .human-eye {
    border-radius: 25%;
}

.human-eye-pupil {
    border-radius:   50%;
    transform: translate(1px, 3px);
    width: 4px;
    height: 4px;
    background-color: black;
}

.human-body {
    margin-top: -3px;
    width: 52px;
    height: 32px;
    border-radius: 50% 50% 0% 0%;
    border-top: 6px solid black;
    border-left: 5px solid black;
    border-right: 5px solid black;
    margin-left: auto;
    margin-right: auto;
}

.ceo .human-body {
    border-radius: 25% 25% 0% 0%;
}

.human-name {
    font-size: 1.2rem;
    border: 3px solid black;
    margin-top: 4px;
}

.modal {
    z-index: 11;
    width: 720px;
    max-width: 100%;
    min-height: 200px;
    max-height: 100%;
    border: 4px solid black;
    background-color: white;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.25);
    padding: 32px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-body {
    display: inline-block;
    width: 100%;
}

.modal-speaker {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    float: left;
}

.modal h2 {
    margin: 0px;
}

.modal h3 {
    margin: 0px;
}

.modal button {
    font-size: 1.25em;
    margin-left: 24px;
    margin-right: 24px;
}

.modal-content {
    font-size: 1em;
}

.modal-background {
    z-index: 10;
    margin: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

.modal .message-meta {
    border-top: 2px solid #ccd;
    border-bottom: 2px solid #ccd;
    background-color: rgb(192, 240, 255);
    margin-bottom: 16px;
    margin-left: -32px;
    margin-right: -32px;
    padding: 8px 32px;
}

.modal .message-meta h4 {
    -webkit-margin-before: 0.125em;
            margin-block-start: 0.125em;
    -webkit-margin-after: 0.75em;
            margin-block-end: 0.75em;
}

.modal .message-meta > span, .modal .message-meta > p {
    font-style: italic;
}

.month-report li {
    list-style-type: none;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 8px;
}

.month-report strong {
    display: inline-block;
    width: 40%;
    text-align: right;
    margin-right: 16px;
    line-height: 1.5em;
}

/* animation for the report data */

@-webkit-keyframes emerge-from-right {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes emerge-from-right {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.month-report li span {
    -webkit-animation-name: emerge-from-right;
            animation-name: emerge-from-right;
    -webkit-animation-duration: 0.75s;
            animation-duration: 0.75s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
}

* {
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

html {
    background-color: white;
    font-size: 1.125rem;
    padding: 8px 0px;
    min-width: 800px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

button {
    background-color: #f0f0f0;
    border: outset 4px;
}

button:hover {
    background-color: #ff9;
}

button:active {
    border: inset 4px;
}

.main-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-top: 16px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.5);
    min-height: 300px;
    background-color: #f0f0c0;
}

.main-menu h1 {
    font-size: 2.5rem;
    font-variant: small-caps;

}

.main-menu footer {
    font-size: 0.75rem;
    text-align: right;
    margin-left: auto;
    margin-right: 20px;
}

.main-menu-back {
    position: absolute;
    top: 20%;
    bottom: 0px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #fff, #999);

}

.main-menu-prompt {
    min-width: 400px;
}

.main-menu-button {
    font-size: 1.5em;
    margin: 1em 0px;
    padding: 0.5em;
    width: 100%;
}

.product-name-input {
    display: block;
    width: 300px;
    font-size: 1.25em;
    border: 0px;
    border-bottom: 3px solid #555;
}

.product-name-input:focus-visible {
    border-bottom: 3px solid black;
}

.onboarding {
    width: 26px;
    height: 26px;
}

.human-resources {
    display: inline-block;
    border: 4px solid #777;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 4px;
    padding: 16px;
    width: 100%;
}

.human-resources-header {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    font-size: 1.2em;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
