#court-area {
  width: 480px;
  font-family: sans-serif;
  margin: 100px auto;
  padding: 0px;
}

#drop-area {
  border: 2px dashed #ccc;
  width: 480px;
  font-family: sans-serif;
  margin: 100px auto;
  padding: 20px;
}

#drop-area.highlight {
  border-color: black;
  background-color: lightgray;
}

#search-area {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 96px;
}

p {
  margin-top: 0;
}

.my-form {
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  padding: 10px;
  background: #ccc;
  cursor: pointer;
  border: 1px solid #ccc;
}

.button:hover {
  background: #ddd;
}

#fileElem {
  display: none;
}

.caseinfo {
    margin-bottom: 2em;
}

.logo {
    height: 2em;
}

/* Spinner animation */
.spinner {
    margin-left: auto;
    margin-right: auto;
    
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: black;
    animation: spin 2s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;

    width: min(3em, 8vw);
    height: min(3em, 8vw);
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

.eperoto-navbar {
    box-shadow: 0px 0px 10px 5px grey;
    border-bottom: 1px solid #2e394b;
    z-index: 110;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  margin-top: 65px;
}

.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 48px; /* Height of navbar */
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  margin-left: 0.5em;
  margin-right: 0.5em;
}

div.updated {
  background-color: #e3f1ff;
}
