/* dace/static/css/main.css */

:root {
    --bs-font-monospace: "Fira Code", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body {
  margin: 1vw;
  padding-left: 2vw;
  padding-right: 2vw;
}


/*
 * Formatting the header area
 */
header {
  background-color: #DFB887;
  height: 35px;
  width: 100%;
  opacity: .9;
  margin-bottom: 10px;
}
header h1.logo {
  margin: 0;
  font-size: 1.7em;
  color: #fff;
  text-transform: uppercase;
  float: left;
}
header h1.logo:hover {
  color: #fff;
  text-decoration: none;
}
/*
 * Centering the body content
 */
.container {
  width: 1200px;
  margin: 0 auto;
}
div.home {
  padding: 10px 0 30px 0;
  background-color: #E6E6FA;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}
div.about {
  padding: 10px 0 30px 0;
  background-color: #E6E6FA;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}

.menu {
  float: right;
  margin-top: 8px;
}
.menu li {
  display: inline;
}
.menu li + li {
  margin-left: 35px;
}
.menu li a {
  color: #444;
  text-decoration: none;
}



.dropzone {
    width: 50vw;
    height: 50px;
    border: 2px dashed #ccc;
    color: #000;
    line-height: 50px;
    text-align: center;
}

.dropzone.dragover {
    border-color: #000;
    color: #000;
}
[data-bs-theme=dark] .dropzone {
    width: 50vw;
    height: 50px;
    border: 2px dashed #333;
    color: #000;
    line-height: 50px;
    text-align: center;
}
[data-bs-theme=dark] .dropzone.dragover {
    border-color: #fff;
    color: #fff;
}


/*
.user_dropdown, .advanced_dropdown {
  max-width: 20vw; 
  background-color: white;
  opacity: 1;
  display: block;
  position: relative;
}

.user_dropdown a {
  display: block;
}

.user_dropdown__details, .advanced_dropdown__details {
  background:white;
  padding:0 10px 10px 10px;
  width:150px;
  position: absolute;
  right:0;
  top:0;
  z-index:200;
}

.user_dropdown__details {
  z-index: 400;
}

.user_dropdown__details summary, .advanced_dropdown__details summary {
  text-align: right;
}

.user_dropdown .user_dropdown__details[open], .advanced_dropdown .advanced_dropdown__details[open] {
  box-shadow: rgba(99, 99, 99, 0.6) 0px 2px 8px 0px;
}
*/

.classes-table {
border-collapse: collapse;
}

.classes-table thead tr {
border-bottom: 1px solid #333;
}

.classes-table tbody tr {
border-bottom: 1px solid #ccc;
}
.classes-table td {
padding: 2px 4px;
}


.product-entry {
  display: none;
  transition: all 0.5s ease-in-out;
}
.product-entry.entry-show {
  display: block;
  transition: all 0.5s ease-in-out;
}
.f-entry-button {
padding: 2px 4px;
border: 1px solid #ccc;
}
.entry-badge {
display: none;
  background-color: #444;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 5px;
}

#staging-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #ff0000;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  display: none; /* Hide by default */
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

