body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f9f9f9;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.App {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* @import "../../css/colors.css";
@import "../../css/units.css";
@import "../../css/z-index.css"; */


.menu-bar {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;

    /*
        For most things, we shouldn't explicitly set height, and let the
        content push the element to whatever fits. Using a fixed height
        instead, will help us subtract the value we assign from the body,
        adding up to a perfect 100%. This means we don't need to set
        overflow: hidden, which makes it hard to debug. border-box
        simplifies by all of this by removing padding from the equation.
    */
    box-sizing: border-box;
    height: 3rem;

    /*
        @todo: This adds ~20px in Chrome, when scrolling to the right,
        but fixes [FFx + Safari] [resize window down + scroll to the right] bug.
        width: 100%;
    */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    background-color: hsla(279, 61%, 31%, 1);
    color: hsla(0, 100%, 100%, 1);
}

.header-main {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.2rem;
    font-size: 0.8rem;

}

.header-main p {
    font-size: 12px;
    background-color: white;
    padding: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 5px;
    margin-bottom: 26px;
    margin-left: 4px;
    color: hsla(279, 61%, 31%, 1);
    margin-right: 12px;

}

.border-dash {
    width: 2px;
    height: 2rem;
    border-right: 2px dashed #0301012c;
}

.main-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    flex-grow: 1;
}

.scratch-logo {
    height: 1.1rem;
    vertical-align: middle;
}

.scratch-logo.clickable {
    cursor: pointer;
}
.connect-logo {
    height: 1.4rem;
    vertical-align: middle;
    padding-top: 0.2rem;
}
.edit-menu{
    padding-top: 0.2rem;
}
.menu-bar-item {
    display: flex;
    padding: 0 0.25rem;
    text-decoration: none;
    color: hsla(0, 100%, 100%, 1);
    ;
    user-select: none;
    align-self: center;
    position: relative;
    align-items: center;
    white-space: nowrap;
    height: 3rem;
}

.menu-bar-item.hoverable {
    cursor: pointer;
}

.menu-bar-item.active,
.menu-bar-item.hoverable:hover {
    background-color: hsla(0, 0%, 0%, 0.15);
    ;
}

.menu-bar-item.growable {
    max-width: 12rem;
    flex: 1;
}


.file-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.file-group .menu-bar-item {
    padding: 0 0.75rem;
}

.menu-bar-item {
    padding: 0 0.5rem;
}

.menu-bar-menu {
    margin-top: 3rem;
}


.menu-bar-item {
    padding: 0 0.75rem;
}
.radar-big {
    width: 100px;
    height: 100px;
}

.radar-spin {
    animation: spin 4s linear infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
