

html,

body {
  /* min-height: 100vh; */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
               "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  overflow: auto;

  ;
}

.mapboxgl-popup-content {
  max-width: 280px !important;
  width: 280px !important; /* optional if you want fixed */
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  color: #001d3c; /* A professional blue */
  font-weight: 400; /* Regular weight for a modern look */
}

h1 {
  font-size: 2.5rem; /* Larger font size for h1 */
  font-weight: 600; /* Slightly bolder than the rest */
}

h2 {
  font-size: 2rem;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
              "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.3rem;
  margin-left:5px;
  align-items: center;
  color: #000000; /* A slightly lighter blue for h4 */
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
  color: #000000; /* Even lighter blue for the smallest heading */
}

/* Additional styles for a professional look */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:root {
  --background: #dcd6f5;
  --navbar-width: 180px;
  --navbar-width-min: 70px;
  --navbar-dark-primary: #4b436d;
  --navbar-dark-secondary: #2c3e50;
  --navbar-light-primary: #f5f6fa;
  --navbar-light-secondary: #c4d3e6;
  --surface-color: #fff;
  --curve: 40;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px; /* add some padding */
}

tooltip {
  display: inline-block;
  position: absolute;
  background-color: #dcd6f5;
  padding: 8px 15px;
  border-radius: 3px;
  margin-top: -26px;
  left: 90px;
  opacity: 0;
  visibility: hidden;
  font-size: 13px;
  letter-spacing: .5px;
}

.logo {
  padding-right: 20px;
}

.ATlogo {
  padding-left: 20px;
  width: 170px;
}

/* Navbar styles */
.navbar {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px; /* Adjusted for demonstration */
  padding: 8px 13px;
  z-index: 9999;
}

.navbar-home {
  background-color: #002cff;
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px; 
  padding: 10px;
  z-index: 9999;
}
.logo img {
  height: 20px;
}

.menu button {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: rgba(32, 32, 32, 0.7);
  width: 150px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s;
  z-index: 999;
}

.menu-items.open {
  transform: scaleY(1);
}

.menu-items a {
  text-decoration: none;
  color: white;
  padding: 8px;
  transition: background-color 0.2s;
}

.menu-items a:hover {
  background-color: #333;
}

.drawerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9998;
}

.visible {
  display: block;
}

.hidden {
  display: none;
}

.drawer {
  width: 240px;
  transform: translateX(-240px);
  transition: transform 0.3s ease-in-out;
}

.open {
  transform: translateX(0);
}

.closed {
  transform: translateX(-240px);
}

.drawerContainer {
  padding: 16px;
}

.listItem {
  cursor: pointer;
}

#main {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;

 /* Allow scrolling when content exceeds viewport height */

}
#app {
  width: 100%;

}
.mapboxgl-ctrl-logo {
  display: none !important;
}
.title {
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  text-align: center;
}

.container {
  background-color: rgba(234, 234, 234, 0.356); /* Use an rgba color value to set the background color with transparency */
  padding: 20px;
  border-radius: 2px; 
  margin: 20px;
  overflow: auto;
  font-family: 'Work Sans', sans-serif;
  color: #000000;/* Add some border radius to round the edges of the container */
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 100px); 
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.weightbox{
  align-items: top;
  height: 200px;
  overflow: auto,
}

.progress-image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.progress-image.fade-in {
  opacity: 1;
}

.progress-image.fade-out {
  opacity: 0;
}

.linear-bar-color-primary {
  background-color: #4ad5d0 !important;
}

.fa-bars {
  color: #fff;
}

  .circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    margin: 2px;
  }

  .fa-times {
    color: #fff;
    font-size: 2rem;
  }
/* 
  table {
    border:1px solid #b3adad;
    border-collapse:collapse;
    padding:5px;
    width: auto;
  }
  table th {
    border:1px solid #b3adad;
    padding:5px;
    background: #f0f0f0;
    color: #313030;
  }
  table td {
    border:1px solid #b3adad;
    text-align:center;
    padding:5px;
    background: #ffffff;
    color: #313030;
  } */

  .mz-card-product{
    padding: 20px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}

.mz-card-product:hover {
  transform: scale(1.05);
  background: #753BBD;
}


.mz-card-product .card-media {
  position: relative;
  margin-bottom: 21px;
  border-radius: 20px;
  overflow: hidden;
  height: 0;
  padding-top: 100%; /* Create a square container */
}

.mz-card-product .card-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-container {
  width: 100px; /* Set the desired width */
  height: 100px; /* Set the desired height */
  overflow: hidden;
  border-radius: 10px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-content {
  display: none;
}

.dropdown-content.show {
  display: block;
}
.card2 {
  display: grid;
  row-gap: 8px;
  padding: 10px;
  background-color: rgba(243, 243, 243, 0.5);
  margin: 10px;
  border-radius: 2px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
  border: 2px solid rgba(7, 7, 7, 0.12);
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  position: relative; /* Add position: relative; */
}

.projectname {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: black;
  padding: 15px 0; /* 20px padding top and bottom, 0px left and right */
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 5vw;
  padding: 0;
  list-style-type: none;
}
/* 
.card {
  position: relative;
  display: block;
  height: 100%;  
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
}

.card__image {      
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--surface-color);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;    
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}       

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  background-color: #fef8f8;
  flex-shrink: 0;
  width: 50px;
  height: 50px;      
  border-radius: 50%;      
}

.card__title {
  font-size: 1em;
  margin: 0 0 .3em;
  color: #6A515E;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";  
  font-size: .8em; 
  color: #D7BDCA;  
}

.card__status {
  font-size: .8em;
  color: #D7BDCA;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: #D7BDCA;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}    

h6.centered-grey {
  text-align: center;
  background-color: #808a8c5f;
  padding: 15px; */


 
  h6.centered-grey {
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2.1;
    position: sticky;
    top: 0;
    background-color: white; /* Ensure the title remains visible */
    z-index: 1;
  }

.bar {
  display: flex;
  align-items: center;


}

.bar p {
  margin-right: 20px;
  font-family:'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.bar select {
  padding: 8px;
  border: none;
  background-color: rgb(227, 228, 228);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #333;
  align-items: center;
}

.bar select:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tab {
  padding-top:24px; 
  background-color: rgb(255, 255, 255);

}
.checkbox {
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-left:20px;
}

.checkbox label {
  margin-left: 5px;
}


.select-container label {
  margin-right: 20px;
  font-family:'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.select-container select {
  padding: 8px;
  border: none;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #333;
  font-family:'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  min-width:80px;
}

.select-container select:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



.card__content {
  /* Define your styles for card content here */
  padding: 24px;
  background-color: rgba(243, 243, 243, 0.5);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  text-align: center;
  display: grid;
  align-content: center; /* Center text horizontally */
  /* Add any other styles you need */
}

.shaded-button {
  border: none;
  background-color: rgba(243, 243, 243, 0.01);
  padding: 10px;
  margin: 5px 0;
  cursor: pointer;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;


}
.shaded-button2 {
  border-color: rgba(4, 47, 73, 0.283);
  background-color: rgba(114, 149, 170, 0.848);
  padding: 15px;
  margin: 10px 0;
  cursor: pointer;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;


}

.fa-icon {
  margin-right: 5px; /* Adjust the margin to create the desired space */
}

.shaded-button:hover {
  background-color: #e0e0e020; /* Change background color on hover */
}

.buildpage {
  padding:5px
}


.form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-input {
  width: 80%;
  padding: 10px;
  margin: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;

}

.upload-button {
  width: 60%;
  padding: 10px;
  background-color: rgba(0, 110, 157, 0.573);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}

.download-button {
  width: 60%;
  padding: 10px;
  background-color: rgba(0, 33, 48, 0.573);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}

.upload-button:hover {
  background-color: #00a1b3;
}

/* .text {
  font-family: 'Work Sans', sans-serif;
  font-style: italic;
  font-size: 1rem;
  padding-top:20px;
  margin-right:50px;
  display:flex;
  justify-content: center;
  align-items: center;
} */

.list {
  padding-top:25px;
  align-items:center;
}

.custom-grid {
  width: auto !important; /* Reset width */
  margin: 0 !important; /* Reset margin */
}



.all_button {
  display: inline-block;
  padding: 10px 20px;
  font-family:'Inter', sans-serif;
  font-size: 14px;
  font-weight:600;
  text-transform: uppercase;
  background-color: #d1d1d1; /* Light gray background color */
  color: #333; /* Text color */
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.all_button:hover {
  background-color: #ccc; /* Darker gray on hover */
  color: #000; /* Dark text color on hover */
}


.all_button2 {
  display: inline-block;
  padding: 10px 20px;
  font-family:'Inter', sans-serif;
  font-size: 12px;
  width:100%;
  font-weight:500;
  text-transform: uppercase;
  background-color: #ffffff; /* Light gray background color */
  color: #333; /* Text color */
  border-style:dotted;
  border-color: rgba(236, 236, 236, 0.766);
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.all_button2:hover {
  background-color: #ccc; /* Darker gray on hover */
  color: #000; /* Dark text color on hover */
}

.container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin:10px;
}

.grid-item {
  flex: 1;
}

.model{
  display:flex;
  justify-content: center;
}

.input{
  width:50%;
  font-family:'Works Sans', sans-serif;
  padding:10px;
}

.grid-item2 {
  flex: 1;
  display:flex;
  justify-content:right
}

.weight_bar {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #ffffffcf;
}

.weight_bar p {
  margin-right: 20px;
  font-family:'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.weight_bar select {
  padding: 8px;
  border: none;
  background-color: rgb(227, 228, 228);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-family: 'Work Sans', sans-serif;
  color: #333;
  align-items: center;
}

.weight_bar select:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.weight_container {
  background-color: rgba(234, 234, 234, 0.356); /* Use an rgba color value to set the background color with transparency */
  padding: 20px;
  border-radius: 2px; 
  margin: 0px;
  overflow: auto;
  font-family: 'Work Sans', sans-serif;
  color: #000000;/* Add some border radius to round the edges of the container */
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 100px); 
}

.draggable-row {
  background-color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}

.dragging {
  background-color: #bfbfbf;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Adds shadow to the dragging item */
}

.drag-over {
  background-color: #e9ecef; /* Light background to highlight the area */
  transition: transform 0.3s ease, height 0.3s ease; /* Added height transition */
  transform: translateY(20px); /* Shift the area down by 20 pixels */
  position: relative; 
  padding: 10px; /* Ensure relative positioning for child elements */
}

.drag-over::before {
  content: "";
  position: absolute;
  top: -1px; /* Adjust the top position to create a gap */
  left: 0;
  width: 100%; /* Match the width of the parent */
  height: 100%; /* Match the height of the parent */
  height: 4px; /* Height of the blue line */
  background-color: blue; /* Blue color for the line */
}

.drag-placeholder {
  height: 50px; /* Adjust based on your item's height */
  background-color: #f8f9fa;
  border: 2px dashed #dee2e6;
  margin: 5px 0;
}

.active-tab-instance {
  font-weight: bold;
  background-color:#fdffff3b !important ;/* Lighter color for the active tab instance */
}

.draggable-item {
  transition: margin 0.3s ease;
}

.toggle-button {
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.toggle-button.selected {
  background-color: #007bff;
  color: #fff;
}

.subheading {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgb(227 227 227);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 0px;
  margin: 5px;
  align-items: center;
}

.column-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  margin: 5px;
  padding:15px;
}

.list-container {
  height: 300px;
  overflow: auto;
}

.dict_edit {
  display: flex;
  justify-content: space-around;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.draggable-item {
  cursor: pointer;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  padding: 5px;
}

.selected-list {
  background-color: #f5f5f5;
}

.checkbox-label {
  display: flex;
  align-items: center;
}

.content {
  /* Default styles for your content */
  width: calc(100% - var(--navbar-width));
  margin-left: var(--navbar-width);
  transition: margin-left 0.2s; /* Adjusted transition property */
}

.content-shifted {
  margin-left: var(--navbar-width-min);
  width: calc(100% - var(--navbar-width-min));

}

#nav-toggle:checked ~ #nav-header {
  width: calc(var(--navbar-width-min) - 16px);
}
#nav-toggle:checked ~ #nav-content, #nav-toggle:checked ~ #nav-footer {
  width: var(--navbar-width-min);
}
#nav-toggle:checked ~ #nav-header #nav-title {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s;
}
#nav-toggle:checked ~ #nav-header label[for=nav-toggle] {
  left: calc(50% - 8px);
  transform: translate(-50%);
}
#nav-toggle:checked ~ #nav-header #nav-toggle-burger {
  background: var(--navbar-light-primary);
}
#nav-toggle:checked ~ #nav-header #nav-toggle-burger:before, #nav-toggle:checked ~ #nav-header #nav-toggle-burger::after {
  width: 16px;
  background: var(--navbar-light-secondary);
  transform: translate(0, 0) rotate(0deg);
}
#nav-toggle:checked ~ #nav-content .nav-button span {
  opacity: 0;
  transition: opacity 0.1s;
}
#nav-toggle:checked ~ #nav-content .nav-button .fas {
  min-width: calc(100% - 16px);
}
#nav-toggle:checked ~ #nav-footer #nav-footer-avatar {
  margin-left: 0;
  left: 50%;
  transform: translate(-50%);
}
#nav-toggle:checked ~ #nav-footer #nav-footer-titlebox, #nav-toggle:checked ~ #nav-footer label[for=nav-footer-toggle] {
  opacity: 0;
  transition: opacity 0.1s;
  pointer-events: none;
}

#nav-bar {
  position: fixed;
  left: 0vw;
  top: 0vw;
  margin-top:45px;
  padding-top:20px;
  height: calc(100% - 2vw);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100%;
  z-index: 2000;
  transition: all 0.5s ease;
  overflow: auto;
}


#nav-bar hr {
  margin: 0;
  position: relative;
  left: 16px;
  width: calc(100% - 32px);
  border: none;
  border-top: solid 1px var(--navbar-dark-secondary);
}
#nav-bar a {
  color: inherit;
  text-decoration: inherit;
}
#nav-bar input[type=checkbox] {
  display: none;
}

#nav-header {
  position: relative;
  min-height: 80px;
  background: var(--navbar-dark-primary);
  z-index: 2;
  display: flex;
  align-items: center;
  transition: width 0.2s;
}
#nav-header hr {
  position: absolute;
  bottom: 0;
}

#nav-title {
  font-size: 1rem;
  transition: opacity 1s;
}

label[for=nav-toggle] {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  margin-left: 10px;
}

#nav-toggle-burger {
  position: relative;
  width: 16px;
  height: 2px;
  background: var(--navbar-dark-primary);
  border-radius: 99px;
  transition: background 0.2s;
}
#nav-toggle-burger:before, #nav-toggle-burger:after {
  content: "";
  position: absolute;
  top: -6px;
  width: 10px;
  height: 2px;
  background: var(--navbar-light-primary);
  border-radius: 99px;
  transform: translate(2px, 8px) rotate(30deg);
  transition: 0.2s;
}
#nav-toggle-burger:after {
  top: 6px;
  transform: translate(2px, -8px) rotate(-30deg);
}

#nav-content {
  margin: -16px 0;
  padding: 16px 0;
  position: relative;
  flex: 1;
  width: var(--navbar-width);
  background: var(--navbar-dark-primary);
  direction: rtl;
  overflow-x: hidden;
  transition: width 0.2s;
}
#nav-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
#nav-content::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background-color: #8f8f8f;
}

#nav-content-highlight {
  position: absolute;
  left: 16px;
  top: -70px;
  width: calc(100% - 16px);
  height: 54px;
  background: var(--background);
  background-attachment: fixed;
  border-radius: 16px 0 0 16px;
  transition: top 0.2s;
}
#nav-content-highlight:before, #nav-content-highlight:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 16px 16px var(--background);
}
#nav-content-highlight:after {
  top: 100%;
  box-shadow: 16px -16px var(--background);
}

.nav-button {
  position: relative;
  margin-left: 10px;
  margin-top: 20px;
  height: 54px;
  display: flex;
  align-items: center;
  color:#00b7ff ;
  direction: ltr;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
  justify-content: flex-start;
}

.nav-button span {
  transition: opacity 1s;
}
.nav-button .fas {
  transition: min-width 0.2s;
}
.nav-button:nth-of-type(1):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(1):hover ~ #nav-content-highlight {
  top: 16px;
}
.nav-button:nth-of-type(2):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(2):hover ~ #nav-content-highlight {
  top: 70px;
}
.nav-button:nth-of-type(3):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(3):hover ~ #nav-content-highlight {
  top: 124px;
}
.nav-button:nth-of-type(4):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(4):hover ~ #nav-content-highlight {
  top: 178px;
}
.nav-button:nth-of-type(5):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(5):hover ~ #nav-content-highlight {
  top: 232px;
}
.nav-button:nth-of-type(6):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(6):hover ~ #nav-content-highlight {
  top: 286px;
}
.nav-button:nth-of-type(7):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(7):hover ~ #nav-content-highlight {
  top: 340px;
}
.nav-button:nth-of-type(8):hover {
  color: var(--navbar-dark-primary);
}
.nav-button:nth-of-type(8):hover ~ #nav-content-highlight {
  top: 394px;
}

#nav-bar .fas {
  min-width: 3rem;
  text-align: center;
}


.excel-like-input {
  border: 1px solid #ccc; /* Light grey border */
  background-color: #f9f9f9; /* Very light grey background */
  font-family: 'Calibri', 'Arial', sans-serif; /* Excel uses Calibri; Arial is a good fallback */
  padding: 4px 6px; /* Compact padding to mimic Excel cells */
  text-align: right; /* Excel typically aligns numbers to the right */
  width: 100%; /* Full width to fill the cell */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Focus state to highlight cell when editing */
.excel-like-input:focus {
  outline: none; /* Remove default focus outline */
  border-color: #4d90fe; /* Light blue border, similar to Excel's selection color */
  background-color: #fff; /* White background when focused */
}
.card {
  width: 100%; /* Ensure the card takes full width of the Grid item */
  padding-top: 100%; /* Create a square card by using padding-top */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #3e87ff12;;
  border-radius: 8px;
}

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.card:hover {
  transform: scale(1.05);
}

.card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

/* 
.card::before {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -40%;
  left: -20%;
  border-radius: 50%;
  border: 35px solid rgba(255, 255, 255, 0.102);
  transition: all .8s ease;
  filter: blur(.5rem);
} */

.text {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: aliceblue;
  font-weight: 900;
  font-size: 1.2em;
}

.icon-container {
  margin-bottom: 10px; /* Add space between icon and text */
}

.text-container {
  text-align: center;
  margin-bottom: 10px; /* Add space between text and button */
}

 
 .card-details {
  color: black;
  height: 100%;
  display: flex; /* Use flex instead of grid */
  align-items: center; /* Center items vertically */
  gap: 0.5em; /* Maintain gap between items */
  padding: 0 1.8rem; /* Adjust padding as needed */
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
}
 
 .card-button {
  transform: translate(-50%, 125%);
  width: 60%;
  border-radius: 1rem;
  border: none;
  background-color: #008bf8;
  color: #fff;
  font-size: 1rem;
  padding: .5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
 }
 
 .text-body {
  color: rgb(134, 134, 134);
 }
 
 
 
.card:hover::before {
  width: 140px;
  height: 140px;
  top: -30%;
  left: 50%;
  filter: blur(0rem);
}
 .icon {
	font-size: 23px;
}
.icon.folder {
	display: inline-block;
	margin: 1em;
	background-color: transparent;
	overflow: hidden;
}
.icon.folder:before {
	content: '';
	float: left;
	background-color: #0a2c5d;

	width: 1.5em;
	height: 0.45em;

	margin-left: 0.07em;
	margin-bottom: -0.07em;

	border-top-left-radius: 0.1em;
	border-top-right-radius: 0.1em;

	box-shadow: 1.25em 0.25em 0 0em #0a2c5d;
}
.icon.folder:after {
	content: '';
	float: left;
	clear: left;
	background-color: #b5b5b5;
	width: 3em;
	height: 2.25em;

	border-radius: 0.1em;
}
.icon.folder.full:before {
	height: 0.55em;
}
.icon.folder.full:after {
	height: 2.15em;
	box-shadow: 0 -0.12em 0 0 #ffffff;
}

.container_card {
  color: white;
  position: relative;
  font-family: sans-serif;
}

.container_card::before,
.container_card::after {
  content: "";
  background-color: #fab5704c;
  position: absolute;
}

.container_card::before {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}

.container_card::after {
  content: "";
  position: absolute;
  height: 3rem;
  top: 8%;
  right: 5%;
  border: 1px solid;
}

.container .box {
  width: 11.875em;
  height: 15.875em;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.074);
  border: 1px solid rgba(255, 255, 255, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

.container .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container .box .title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.container .box div strong {
  display: block;
  margin-bottom: 0.5rem;
}

.container .box div p {
  margin: 0;
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.container .box div span {
  font-size: 0.7rem;
  font-weight: 300;
}

.container .box div span:nth-child(3) {
  font-weight: 500;
  margin-right: 0.2rem;
}

.container .box:hover {
  box-shadow: 0px 0px 20px 1px #ffbb763f;
  border: 1px solid rgba(255, 255, 255, 0.454);
}

.rotate-btn {
  font-size: 20px;
  background-color: #002cff; /* Adjust as needed */
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.rotate-btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.rotate-btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

/* Specific styles for rotation effect */
.rotate-btn .svg-wrapper {
  transition: transform 0.5s ease;
}

.rotate-btn.rotated .svg-wrapper {
  transform: rotate(90deg);
}

.rotate-btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.rotate-btn:hover svg {
  transform: translateX(1.2em) rotate(90deg) scale(1.1);
}

.rotate-btn:hover span {
  transform: translateX(5em);
}

.rotate-btn:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}
.icons-side {
padding: 2px 22px;
display:flex;
justify-content: space-between;
align-items:center;
width:80px;
}

.project-page{
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border: 1.5px solid rgb(225, 226, 230);
  padding: 16px 24px;
  display: block;
}


.continue-application {
  --color: #fff;
  --background: #007bff;
  --background-hover: #165dc1;
  --background-left: #007bff;
  --folder: #5de1e6;
  --folder-inner: #3eb8cd;
  --paper: #FFFFFF;
  --paper-lines: #BBC1E1;
  --paper-behind: #E1E6F9;
  --pencil-cap: #fff;
  --pencil-top: #275EFE;
  --pencil-middle: #fff;
  --pencil-bottom: #5C86FF;
  --shadow: rgba(13, 15, 25, .2);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 19px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  padding: 17px 29px 17px 69px;
  transition: background 0.3s;
  color: var(--color);
  background: var(--bg, var(--background));
}

.continue-application > div {
  top: 0;
  left: 0;
  bottom: 0;
  width: 53px;
  position: absolute;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  background: var(--background-left);
}

.continue-application > div .folder {
  width: 23px;
  height: 27px;
  position: absolute;
  left: 15px;
  top: 13px;
}

.continue-application > div .folder .top {
  left: 0;
  top: 0;
  z-index: 2;
  position: absolute;
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder .top svg {
  width: 24px;
  height: 27px;
  display: block;
  fill: var(--folder);
  transform-origin: 0 50%;
  transition: transform 0.3s ease var(--fds, 0.45s);
  transform: perspective(120px) rotateY(var(--fr, 0deg));
}

.continue-application > div .folder:before, .continue-application > div .folder:after,
.continue-application > div .folder .paper {
  content: "";
  position: absolute;
  left: var(--l, 0);
  top: var(--t, 0);
  width: var(--w, 100%);
  height: var(--h, 100%);
  border-radius: 1px;
  background: var(--b, var(--folder-inner));
}

.continue-application > div .folder:before {
  box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow), 0 3.5px 7px var(--shadow);
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder:after,
.continue-application > div .folder .paper {
  --l: 1px;
  --t: 1px;
  --w: 21px;
  --h: 25px;
  --b: var(--paper-behind);
}

.continue-application > div .folder:after {
  transform: translate(var(--pbx, 0), var(--pby, 0));
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .folder .paper {
  z-index: 1;
  --b: var(--paper);
}

.continue-application > div .folder .paper:before, .continue-application > div .folder .paper:after {
  content: "";
  width: var(--wp, 14px);
  height: 2px;
  border-radius: 1px;
  transform: scaleY(0.5);
  left: 3px;
  top: var(--tp, 3px);
  position: absolute;
  background: var(--paper-lines);
  box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
}

.continue-application > div .folder .paper:after {
  --tp: 6px;
  --wp: 10px;
}

.continue-application > div .pencil {
  height: 2px;
  width: 3px;
  border-radius: 1px 1px 0 0;
  top: 8px;
  left: 105%;
  position: absolute;
  z-index: 3;
  transform-origin: 50% 19px;
  background: var(--pencil-cap);
  transform: translateX(var(--pex, 0)) rotate(35deg);
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .pencil:before, .continue-application > div .pencil:after {
  content: "";
  position: absolute;
  display: block;
  background: var(--b, linear-gradient(var(--pencil-top) 55%, var(--pencil-middle) 55.1%, var(--pencil-middle) 60%, var(--pencil-bottom) 60.1%));
  width: var(--w, 5px);
  height: var(--h, 20px);
  border-radius: var(--br, 2px 2px 0 0);
  top: var(--t, 2px);
  left: var(--l, -1px);
}

.continue-application > div .pencil:before {
  -webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
  clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
}

.continue-application > div .pencil:after {
  --b: none;
  --w: 3px;
  --h: 6px;
  --br: 0 2px 1px 0;
  --t: 3px;
  --l: 3px;
  border-top: 1px solid var(--pencil-top);
  border-right: 1px solid var(--pencil-top);
}

.continue-application:before, .continue-application:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background: var(--color);
  transform-origin: 9px 1px;
  transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
  top: 26px;
  right: 16px;
  transition: transform 0.3s;
}

.continue-application:after {
  --r: 45deg;
}

.continue-application:hover {
  --cx: 2px;
  --bg: var(--background-hover);
  --fx: -40px;
  --fr: -60deg;
  --fd: .15s;
  --fds: 0s;
  --pbx: 3px;
  --pby: -3px;
  --pbd: .15s;
  --pex: -24px;
}
.topbar h2 {
  margin: 10px;
  text-align: left;
  color:#ffffff;
}

.topbar {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #00082b6f;
  border-color: rgba(0, 2, 42, 0.821);

}

.file-name {
  flex-grow: 1;
}

.data-container {
  margin: 10px 0;
  padding:24px;
}

.data-container table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

 .data-container td {
  padding: 12px 15px; /* Increased padding for spacious feel */
  text-align: left;
  font-size: 14px; 
  vertical-align: middle; /* Centers text vertically */
  color: rgb(93, 93, 93);/* Slightly smaller text */
}

.data-container td:last-child {
  padding: 12px 15px; /* Increased padding for spacious feel */
  text-align: left;
  font-size: 14px; 
  vertical-align: middle; /* Centers text vertically */
  color: rgb(93, 93, 93);/* Slightly smaller text */
}


/* Remove borders for a cleaner look */
.data-container th {
  border-bottom: 2px solid #e0e0e0; /* Light gray for subtle separation */
  color: #5f6368;
  font-weight:400;
  text-align: left;
  padding: 12px 15px; /* Increased padding for spacious feel */
  font-size: 14px; 
  vertical-align: middle; 
  align-content:center; /* Dark gray color for headers */
  background-color: #ffffff; /* White background for a clean look */
}

.data-container th:last-child {
  border-bottom: 2px solid #e0e0e0; /* Light gray for subtle separation */
  color: #5f6368;
  text-align: center;
  padding: 12px 15px; /* Increased padding for spacious feel */
  font-size: 14px; 
  vertical-align: middle; 
  align-content:center; /* Dark gray color for headers */
  background-color: #ffffff; /* White background for a clean look */
}

/* Style for table rows */
.data-container tr {
  transition: background-color 0.3s ease;
  border-bottom: 2px solid #e0e0e0; 
  background-color: white;/* Light gray for subtle separation */
  /* Smooth transition for hover effect */
}

.data-container tr:hover {
  background-color: #f5f5f5; /* Light gray background on hover for interactivity */
}


.nav-pills > li > a {
  border-radius: 0;
}

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}

#wrapper.toggled {
  padding-left: 250px;
  overflow: hidden;
}

.new-collapsible-content {
  padding-left: 20px; 
  margin-left: 20px;
  height: 34px;
  display: flex;
  align-items: center;
  color: var(--navbar-light-secondary);
  direction: ltr;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
  justify-content: flex-start;/* Indent content to signify it's part of the collapsible section */
}
.new-collapsible-content:hover {
  background-color: #ffffff21;
}

.subtitle {
  font-size: 12pt;
  font-weight: bold;
  padding:10px;
}

.nav-link {
  display: inline-block; /* Ensure the link is treated as an inline element */
  padding: 10px; /* Adjust padding as needed */
  text-decoration: none; /* Remove default underline */
  color: inherit; /* Inherit color from parent */
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.project-row:hover {
  background-color: #f2f2f2;
}

.edit-icon {
  width: 50px;
  text-align: center!important;
}

.download-icon {
  width: 50px;
  color:rgb(187, 187, 187);
  text-align: center!important;
  cursor:pointer;
}



.date-created {
  width: 150px;
}

.action-buttons button {
  padding: 5px 10px;
  margin-right: 5px;
  border: none;
  cursor: pointer;
}

.go-to-project-button {
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  -webkit-tap-highlight-color: transparent;
  padding: 17px 29px 17px 69px;
  transition: background 0.3s;
  color: #fff;
  background: #165dc1;
}

.delete-button2 {
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s;
  color: #fff;
  background: #d1d1d1;
  padding:8px;
  margin:2px;
}
.deleteproject {
  border: none;
  border-radius: 3px;
  background: transparent;
  color: #c2c2c2;
  transition: background 0.3s;
  padding:10px
}

.deleteproject:hover {
  background: rgba(0, 0, 255, 0.399); /* Change this to your desired hover color */
}

.delete-button {
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  -webkit-tap-highlight-color: transparent;
  padding: 17px 29px 17px 69px;
  transition: background 0.3s;
  color: #fff;
  background: #d81858;
}

.project-table {
  width: 100%;
  border-collapse: collapse;
}

.project-row {
  border-bottom: 1px solid #ddd;
}

.project-info {
  display: flex;
  align-items: center;
}

.project-name {
  width: 30%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.date-created,
.file-count,
.action-buttons {
  width: 17.5%; /* Each takes 1/6 of the remaining space (50% divided by 3) */
  text-align: center;
}

.action-buttons {
  text-align: center!important;
}

.headingproject {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  padding-left: 24px;
  padding-right: 24px;
}

.headingproject h2 {
  margin: 10px;/* Remove default margin */
}

.projecticon {
	font-size: 23px;
}
.projecticon.folder {
	display: inline-block;
	margin: 1em;
	background-color: transparent;
	overflow: hidden;
}
.projecticon.folder:before {
	content: '';
	float: left;
	background-color: #0a2c5d;

	width: 1.5em;
	height: 0.45em;

	margin-left: 0.07em;
	margin-bottom: -0.07em;

	border-top-left-radius: 0.1em;
	border-top-right-radius: 0.1em;

	box-shadow: 1.25em 0.25em 0 0em #0a2c5d;
}
.projecticon.folder:after {
	content: '';
	float: left;
	clear: left;
	background-color: #74c0fc;
	width: 3em;
	height: 2.25em;

	border-radius: 0.1em;
}
.projecticon.folder.full:before {
	height: 0.55em;
}
.projecticon.folder.full:after {
	height: 2.15em;
	box-shadow: 0 -0.12em 0 0 #ffffff;
}


/* #recodepage */

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.variable-info {
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
}

.flex-container {
  display: flex;
  align-items: center; /* Vertically center the items */
  justify-content: flex-start; /* Align items to the start of the container */
}

.bold-text {
  font-weight: bold;
}
.custom-card {
  width: calc(45% - 10px); /* Adjust as needed */
  margin-bottom: 20px;
  border-radius: 10px;
}

.custom-h7-card-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
  "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
color: rgb(105, 105, 105)!important;
margin: 10px;
font-size: 1rem!important;
font-weight: 600!important;
display:flex;
justify-content: center;
align-items: center;
}
.MuiAccordionSummary-expandIcon {
  margin-left: auto; /* This pushes the expand icon to the end */
}

.MuiTypography-h6.card-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
               "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: black;
  border: 2px blueviolet;
  margin: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  display:flex;
  justify-content: center;
  align-items: center;
}

.info-icon {
  color: #0a2c5d;
  font-size:30pt
}

.card-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
               "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: black;
}

.bold-text {
  font-weight: bold;
}


.styledGrid {
  height: 100%;
}

.MuiCard-root.customCard {
  display: flex;
  flex-direction: column;
  height: 70vh;
  border-radius: 15px;
  box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
  overflow:auto;
}

.MuiCardContent-root {
  flex: 1; /* Allow the content to grow and fill the available space */
  overflow: auto; /* Enable scrolling for the content */
}

.cardActionsSpace {
  margin-top: auto;
  padding: 16px;
}

.customButton {
  margin-top: 8px;
}

.all_button3 {
  background-color: blue; /* Adjust as needed */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  margin-top: 10px;
}

.all_button3:hover {
  background-color: purple; /* Adjust as needed */
}

.nextbutton {
  background-color: rgba(0, 0, 97, 0.33); /* Adjust as needed */
  color: white;
  border: 2px rgb(0, 0, 52);
  border-radius: 5px;
  padding: 10px 20px;
  margin-top: 10px;
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  position: sticky;
  z-index: 1;
}

.nextbutton:disabled {
  background-color: #cccccc; /* Gray */
  color: #666666; /* Dark Gray */
  cursor: not-allowed;
}

.nextbutton:hover {
  background-color: rgba(2, 2, 157, 0.81); /* Adjust as needed */
}

.MuiCardActions-root {
  display: flex;
  padding: 8px;
  align-items: center;
  justify-content: flex-end;
}
.styled-component {
  border: 1px solid #c2c2c2;
  border-radius: 4px;
  padding: 10px;
  margin: 10px;
}

.bullet-list {
  padding-left: 20px; /* Add padding-left for bullet list indentation */
}

.MuiTypography-subtitle1 {
  font-size: 1rem;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.00938em;
  display: flex;
  flex-direction: column;
}

.recodetitle {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: #fdfdfd;
  border-radius: 14px;
  padding: 10px;
  margin-top:20px;
  border: 1px solid rgba(228, 228, 228);

}

.selectquestion {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #fdfdfd;
  border-radius: 14px;
  padding: 10px;
  margin-top:20px;
  border: 1px solid rgba(228, 228, 228);

}


.conditionaltitle {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  min-width: 0;
  word-wrap: break-word;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 15px;
  box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
  align-items: center;
  border: 1px solid rgba(228, 228, 228);

}

.recodecard {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fcfcfe;
  background-clip: border-box;
  border: 1px solid rgba(228, 228, 228);
  height: 70vh;
  border-radius: 15px;
  box-shadow: 0 3px 5px 2px rgba(16, 16, 57, 0.1);
  overflow: hidden; 
  height: 100vh;
  padding-bottom:10px;
}
.othercard {
  display: flex;
  flex-direction: column;
  height: 70vh;
  position: relative; /* if you need to position children absolutely within */
  overflow: hidden; 
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgb(12 20 114 / 20%);
  border-radius: 15px;
  box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
}

.othercard-variables {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgb(12 20 114 / 20%);
  border-radius: 15px;
  box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden; 
  height: 100%;
  min-height: 10vh;
  max-height: 30vh;
}


.othercard-weight{
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  height: 70vh;
  border-radius: 15px;
  box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden; 
  margin:10px;
}

.othercard-weight ul {
  list-style-type: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.othercard-weight li {
  padding: 3px; /* Add padding to create space between rows */
  border-bottom: 1px solid #ddd; /* Add border bottom to separate rows */
}
.othercard-weight .card-body {
  -ms-flex: 1 1 auto;
  flex: 1; /* Allow the body to grow and fill the remaining space */
  padding-left: 15px;
  padding-right:15px;
  overflow-y: auto; 
}
.othercard-weight .card-title {
  margin-bottom: .15rem;
  background-color: #cbebf8;
}

.othercard > hr {
  margin-right: 0;
  margin-left: 0;
}

.othercard > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.othercard > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.othercard > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}

.othercard > .card-header + .list-group,
.othercard > .list-group + .card-footer {
  border-top: 0;
}

.othercard .card-body {
  -ms-flex: 1 1 auto;
  flex: 1; /* Allow the body to grow and fill the remaining space */
  min-height: 0; /* Allow the body to shrink if necessary */
  padding: 1.25rem;
  overflow-y: auto; 
}

.recodecard .card-body {
  -ms-flex: 1 1 auto;
  flex: 1; /* Allow the body to grow and fill the remaining space */
  min-height: 0; /* Allow the body to shrink if necessary */
  padding: 1.25rem;
  overflow-y: auto; 
}

.othercard .card-title {
  margin-bottom: .75rem;
}

.othercard .card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}

.othercard .card-text:last-child {
  margin-bottom: 0;
}

.othercard .card-link:hover {
  text-decoration: none;
}

.othercard .card-link + .card-link {
  margin-left: 1.25rem;
}

.othercard .card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.othercard-variables .card-header-variables {
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.othercard .card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.othercard .card-footer {
  padding: .75rem 1.25rem;
  background-color: rgb(255, 253, 253);
  border-top: 1px solid rgba(0, 0, 0, .125);
  display: flex;
  justify-content: flex-end;
  margin-top: auto; /* Push the footer to the bottom */
}

.recodecard .card-footer {
  padding: .75rem 1.25rem;
  background-color: rgb(255, 253, 253);
  border-top: 1px solid rgba(0, 0, 0, .125);
  display: flex;
  justify-content: flex-end;
  margin-top: auto; /* Push the footer to the bottom */
}
.othercard-weight .card-footer {
  padding: .75rem 1.25rem;
  background-color: rgb(255, 253, 253);
  border-top: 1px solid rgba(0, 0, 0, .125);
  display: flex;
  justify-content: flex-end;
  margin-top: auto; /* Push the footer to the bottom */
}
.othercard .card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.othercard .card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0;
}

.othercard .card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem;
}

.othercard .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(.25rem - 1px);
}

.othercard .card-img,
.othercard .card-img-bottom,
.othercard .card-img-top {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.othercard .card-img,
.othercard .card-img-top {
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.othercard .card-img,
.othercard .card-img-bottom {
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}

.othercard .card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .othercard .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .othercard .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.othercard .card-group > .card {
  margin-bottom: 15px;
}

.regroupheading {
  text-align: left;
  margin-left:5px;
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 15px;
  font-size:12pt;
  border-radius: 6px;
  background-color: #0000000a;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conditionalheading {
  text-align: left;
  margin-left:5px;
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 15px;
  font-size:12pt;
  border-radius: 6px;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}


.dialog-container {
  overflow: auto;
}

.card-header {
  padding: 15px;
}

.form-group {
  margin: 10px;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: space-around;
  font-size: 11pt;
  background-color: #f6f9ff;
}

.select-container {
  margin-bottom: 15px;
  border: 1px solid #bbdef9;
  border-radius: 4px;
  padding: 10px;
  background-color: white;
  display:flex;
  justify-content: center;
  flex-direction: column;
  margin:10px;
  box-sizing: border-box;

}

.condition-logic {
  margin-bottom: 15px;
}

.logic-buttons {
  display: flex;
  gap: 10px;
}

.conditions-box {
  margin-bottom: 15px;
}

.select-container select {
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.select-container .upload-container select {
  flex-grow: 1;
}


.select-container2 {
  margin-bottom: 15px;
  border: 1px solid #0000ff4f;
  border-radius: 4px;
  padding: 10px;
}
.btn-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.btn-container i {
  display: inline-block;
  position: relative;
  top: -9px;
}

label {
  font-size: 13px;
  color: #424242;
  font-weight: 500;
  vertical-align: middle !important;
}

.btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 209px;
  height: 30px;
  background: #E0E0E0;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
    /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 7px;
  right: 30px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 108px;
  height: 16px;
  background: #fff;
  border-radius: 26px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 5px 0px;
  display:flex; 
  justify-content: center;
  align-items: center;
}

.btn-color-mode-switch > .alert {
  display: none;
  background: #FF9800;
  border: none;
  color: #fff;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
  background: #151515;
  color: #fff;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 108px;
  background: #3c3c3c;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
  display: block;
}

.dark-preview {
  background: #0d0d0d;
}

.white-preview {
  background: #fff;
}

.steps {
  margin-left: 200px;
  margin-right: 200px;
}

/* upload */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background-color: #f5f5f5;
  width:100%;
  border-radius: 10px;
}

.upload-text{
  display: flex;
  flex-direction: row;
  width:100%;
  align-items: center;
}

.csv-reader-input{
  width:50%;
}

.form-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width:60%;
}
.form-container-dictionary {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background-color: #f5f5f5;
  width:100%;
  border-radius: 10px;
}
.form-box-dictionary {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width:96%;
}


.text-input, .upload, .upload-button {
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  width:100%;
}

.upload-button {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.upload-button:hover {
  background-color: #0056b3;
}

.custom-file-upload-label {
  background-color: #eee;
  padding: 10px;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
}

.file-info-table-container {
  margin-top: 20px;
}

.file-info-table {
  width: 100%;
  border-collapse: collapse;
}

.file-info-table td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.edit-icon {
  cursor: pointer;
  color: #007bff;
}

.edit-icon:hover {
  color: #0056b3;
}
.browse-button {
  background-color: rgb(82, 82, 82);
  padding: 5px 15px;
  border-radius: 10px;
  color: white;
  transition: all 0.3s;
}
.browse-button:hover {
  background-color: rgb(14, 14, 14);
}

.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 250px;
  height: 100%;
  width: 100%;
}

.dot {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #4dc3f1;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) {
  animation-delay: -0.3s;
}

.dot:nth-child(2) {
  animation-delay: -0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #6793fb;
    box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 
}

.professional-form {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.file-upload-label {
  display: block;
  border: 2px dashed #ccc;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: border 0.3s ease-in-out;
}

.file-upload-label:hover {
  border-color: #999;
}

.file-upload {
  display: none;
}

.submit-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.submit-button:hover {
  background-color: #0056b3;
}

.form svg {
  width: 100px;
  height: 50px;
  height: 50px;
  fill: rgb(166 163 163);
  margin-bottom: 20px;
}

.outer-box {
    background-color: rgba(234, 234, 234, 0.356); /* Use an rgba color value to set the background color with transparency */
    border-radius: 2px; 
    overflow: auto;
    color: #000000;/* Add some border radius to round the edges of the container */
    display: flex;
    align-items: center;
    width: 90%;
  }

  .MuiGrid-root .recodedvariables {
    flex-grow: 1;
    max-width: 23.666667%;
    /* flex-basis: 4.666667%; */
    padding-left: 8px;
    padding-top: 18px;
  }

  .MuiGrid-spacing-xs-3 > .MuiGrid-item {
    padding: 3px !important;
}

.professional-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: left;
  color: #333;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.professional-table th, .professional-table td {
  padding: 12px;
  text-align: left;
}

.professional-table thead {
  background-color: #f5f5f5;
  font-weight: bold;
}

.professional-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.weight-input {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

/* Hover effect for rows */
.professional-table tbody tr:hover {
  background-color: #eef4ff;
}

.xtab-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background-color: #ffffff;
}

.xtab-box {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.xtab-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-container {
  margin-bottom: 20px;
}


.button-container {
  display: flex;
  width: 100%;
}

.half-width-button {
  flex: 1;
  text-align: center;
  padding: 10px;
  margin: 2px;
  cursor: pointer;
  border: none;
  background-color: #4CAF50;
  color: white;
}

.create-crosstab-button .table-icon {
  /* Use your preferred method to include an icon, e.g., background-image with a table icon */
  padding-right: 5px;
}

.download-button {
  background-color: #008CBA; /* Different color for differentiation */
}



.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Creates a responsive grid layout */
  gap: 10px; /* Space between grid items */
  padding-top: 24px; /* Padding around the grid container */
}

.testcard {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  overflow: auto; /* Ensures content within cards does not overflow */
  display: flex;
  flex-direction: column; /* Makes the content flow vertically */
  height: 100%; /* Ensures cards take full height of their grid area */
}

.testcard-header, .testcard-footer {
  padding: 16px;
  background-color: #f5f5f5; /* Light grey background for header/footer */
  border-bottom: 1px solid #e0e0e0; /* Adds a subtle line to separate the header/footer from the body */
}

.testcard-body {
  padding: 16px;
  flex-grow: 1; /* Allows the body to grow and fill available space, pushing the footer down */
  overflow-y: auto; /* Adds scroll to body content if it overflows */
}

.centered-grey {
  color: #606060; /* Dark grey text color for centered text */
  text-align: center;
}

/* Optional: Adjust visibility without MUI */
.testcard-new-dictionary {
  display: block; /* Hidden by default */
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr); /* Ensures three columns on smaller screens */
    /* Stacks cards vertically on smaller screens */
  }
}

.scrollable-container {
  max-height: 300px;  /* Adjust the height based on your needs */
  overflow-y: auto;   /* Enables vertical scrolling */
  overflow-x: hidden; /* Hides horizontal scrollbar */
}

.scrollable-container::-webkit-scrollbar {
  width: 8px;  /* width of the entire scrollbar */
}

.scrollable-container::-webkit-scrollbar-track {
  background: #0a2c5d;  /* color of the tracking area */
}

.scrollable-container::-webkit-scrollbar-thumb {
  background-color: #1677ff;  /* color of the scroll thumb */
  border-radius: 10px;  /* roundness of the scroll thumb */
  border: 1.5px solid #0a2c5d;  /* creates padding around scroll thumb */
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
  background-color: #2661b4;  /* color of the scroll thumb when hovered */
}

.Mui-focused {
  color: #0052cc !important; /* To match the button color */
}

.MuiButton-root {
  margin-top: 16px; /* Adds space above the button */
}

.MuiButton-containedPrimary:hover {
  background-color: #0041a3; /* Slightly darker on hover for interactive feel */
}

.MuiButton-fullWidth {
  width: 100%; /* Makes button full width */
}

.Snackbar-root {
  position: fixed;
  bottom: 20px; /* Moves the snackbar to the bottom of the viewport */
  left: 50%;
  transform: translateX(-50%); /* Centers the snackbar horizontally */
  width: auto;
  max-width: 90%; /* Ensures it doesn’t stretch too far on larger screens */
}
.loader {
  --background: linear-gradient(135deg, #23C4F8, #275EFE);
  --shadow: rgba(39, 94, 254, 0.28);
  --text: #6C7486;
  --page: rgba(255, 255, 255, 0.36);
  --page-fold: rgba(255, 255, 255, 0.52);
  --duration: 3s;
  width: 200px;
  height: 140px;
  position: relative;
}

.loader:before, .loader:after {
  --r: -6deg;
  content: "";
  position: absolute;
  bottom: 8px;
  width: 120px;
  top: 80%;
  box-shadow: 0 16px 12px var(--shadow);
  transform: rotate(var(--r));
}

.loader:before {
  left: 4px;
}

.loader:after {
  --r: 6deg;
  right: 4px;
}

.loader div {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  position: relative;
  z-index: 1;
  perspective: 600px;
  box-shadow: 0 4px 6px var(--shadow);
  background-image: var(--background);
}

.loader div ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.loader div ul li {
  --r: 180deg;
  --o: 0;
  --c: var(--page);
  position: absolute;
  top: 10px;
  left: 10px;
  transform-origin: 100% 50%;
  color: var(--c);
  opacity: var(--o);
  transform: rotateY(var(--r));
  -webkit-animation: var(--duration) ease infinite;
  animation: var(--duration) ease infinite;
}

.loader div ul li:nth-child(2) {
  --c: var(--page-fold);
  -webkit-animation-name: page-2;
  animation-name: page-2;
}

.loader div ul li:nth-child(3) {
  --c: var(--page-fold);
  -webkit-animation-name: page-3;
  animation-name: page-3;
}

.loader div ul li:nth-child(4) {
  --c: var(--page-fold);
  -webkit-animation-name: page-4;
  animation-name: page-4;
}

.loader div ul li:nth-child(5) {
  --c: var(--page-fold);
  -webkit-animation-name: page-5;
  animation-name: page-5;
}

.loader div ul li svg {
  width: 90px;
  height: 120px;
  display: block;
}

.loader div ul li:first-child {
  --r: 0deg;
  --o: 1;
}

.loader div ul li:last-child {
  --o: 1;
}

.loader span {
  display: block;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 20px;
  text-align: center;
  color: var(--text);
}

@keyframes page-2 {
  0% {
    transform: rotateY(180deg);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  35%, 100% {
    opacity: 0;
  }

  50%, 100% {
    transform: rotateY(0deg);
  }
}

@keyframes page-3 {
  15% {
    transform: rotateY(180deg);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0;
  }

  65%, 100% {
    transform: rotateY(0deg);
  }
}

@keyframes page-4 {
  30% {
    transform: rotateY(180deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  65%, 100% {
    opacity: 0;
  }

  80%, 100% {
    transform: rotateY(0deg);
  }
}

@keyframes page-5 {
  45% {
    transform: rotateY(180deg);
    opacity: 0;
  }

  65% {
    opacity: 1;
  }

  80%, 100% {
    opacity: 0;
  }

  95%, 100% {
    transform: rotateY(0deg);
  }
}


.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;

}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
  margin: auto;/* ensure it appears on top of other content */
}



.banter-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
}

.banter-loader__box {
  float: left;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.banter-loader__box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: blue;
  border-radius: 15px;
  transform: rotate(45deg);
  opacity: 70%;
}

.banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}

.banter-loader__box:nth-child(1):before,
.banter-loader__box:nth-child(4):before {
  margin-left: 26px;
}

.banter-loader__box:nth-child(3):before {
  margin-top: 52px;
}

.banter-loader__box:last-child {
  margin-bottom: 0;
}

@keyframes moveBox-1 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(0px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 26px);
  }

  54.5454545455% {
    transform: translate(26px, 26px);
  }

  63.6363636364% {
    transform: translate(26px, 26px);
  }

  72.7272727273% {
    transform: translate(26px, 0px);
  }

  81.8181818182% {
    transform: translate(0px, 0px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(1) {
  animation: moveBox-1 4s infinite;
}

@keyframes moveBox-2 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 26px);
  }

  54.5454545455% {
    transform: translate(26px, 26px);
  }

  63.6363636364% {
    transform: translate(26px, 26px);
  }

  72.7272727273% {
    transform: translate(26px, 26px);
  }

  81.8181818182% {
    transform: translate(0px, 26px);
  }

  90.9090909091% {
    transform: translate(0px, 26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(2) {
  animation: moveBox-2 4s infinite;
}

@keyframes moveBox-3 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(-26px, 0);
  }

  45.4545454545% {
    transform: translate(-26px, 0);
  }

  54.5454545455% {
    transform: translate(-26px, 0);
  }

  63.6363636364% {
    transform: translate(-26px, 0);
  }

  72.7272727273% {
    transform: translate(-26px, 0);
  }

  81.8181818182% {
    transform: translate(-26px, -26px);
  }

  90.9090909091% {
    transform: translate(0px, -26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(3) {
  animation: moveBox-3 4s infinite;
}

@keyframes moveBox-4 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, -26px);
  }

  36.3636363636% {
    transform: translate(0px, -26px);
  }

  45.4545454545% {
    transform: translate(0px, 0px);
  }

  54.5454545455% {
    transform: translate(0px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(-26px, -26px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(4) {
  animation: moveBox-4 4s infinite;
}

@keyframes moveBox-5 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(0, 0);
  }

  27.2727272727% {
    transform: translate(0, 0);
  }

  36.3636363636% {
    transform: translate(26px, 0);
  }

  45.4545454545% {
    transform: translate(26px, 0);
  }

  54.5454545455% {
    transform: translate(26px, 0);
  }

  63.6363636364% {
    transform: translate(26px, 0);
  }

  72.7272727273% {
    transform: translate(26px, 0);
  }

  81.8181818182% {
    transform: translate(26px, -26px);
  }

  90.9090909091% {
    transform: translate(0px, -26px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(5) {
  animation: moveBox-5 4s infinite;
}

@keyframes moveBox-6 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, 0);
  }

  36.3636363636% {
    transform: translate(0px, 0);
  }

  45.4545454545% {
    transform: translate(0px, 0);
  }

  54.5454545455% {
    transform: translate(0px, 0);
  }

  63.6363636364% {
    transform: translate(0px, 0);
  }

  72.7272727273% {
    transform: translate(0px, 26px);
  }

  81.8181818182% {
    transform: translate(-26px, 26px);
  }

  90.9090909091% {
    transform: translate(-26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(6) {
  animation: moveBox-6 4s infinite;
}

@keyframes moveBox-7 {
  9.0909090909% {
    transform: translate(26px, 0);
  }

  18.1818181818% {
    transform: translate(26px, 0);
  }

  27.2727272727% {
    transform: translate(26px, 0);
  }

  36.3636363636% {
    transform: translate(0px, 0);
  }

  45.4545454545% {
    transform: translate(0px, -26px);
  }

  54.5454545455% {
    transform: translate(26px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(0px, 0px);
  }

  90.9090909091% {
    transform: translate(26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(7) {
  animation: moveBox-7 4s infinite;
}

@keyframes moveBox-8 {
  9.0909090909% {
    transform: translate(0, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(-26px, -26px);
  }

  36.3636363636% {
    transform: translate(0px, -26px);
  }

  45.4545454545% {
    transform: translate(0px, -26px);
  }

  54.5454545455% {
    transform: translate(0px, -26px);
  }

  63.6363636364% {
    transform: translate(0px, -26px);
  }

  72.7272727273% {
    transform: translate(0px, -26px);
  }

  81.8181818182% {
    transform: translate(26px, -26px);
  }

  90.9090909091% {
    transform: translate(26px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.banter-loader__box:nth-child(8) {
  animation: moveBox-8 4s infinite;
}

@keyframes moveBox-9 {
  9.0909090909% {
    transform: translate(-26px, 0);
  }

  18.1818181818% {
    transform: translate(-26px, 0);
  }

  27.2727272727% {
    transform: translate(0px, 0);
  }

  36.3636363636% {
    transform: translate(-26px, 0);
  }

  45.4545454545% {
    transform: translate(0px, 0);
  }

  54.5454545455% {
    transform: translate(0px, 0);
  }

  63.6363636364% {
    transform: translate(-26px, 0);
  }

  72.7272727273% {
    transform: translate(-26px, 0);
  }

  81.8181818182% {
    transform: translate(-52px, 0);
  }

  90.9090909091% {
    transform: translate(-26px, 0);
  }

  100% {
    transform: translate(0px, 0);
  }
}

.banter-loader__box:nth-child(9) {
  animation: moveBox-9 4s infinite;
}

.paper_project {
  background-color: rgb(255, 255, 255);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgb(225, 226, 230);
  padding: 16px 24px;
  display: block;
  margin-bottom:5px;
  height:70px;
}

.paper_project:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.project-info {
  font-family: 'Roboto', sans-serif;
  color: grey;
}

.text-title {
  font-family: 'Roboto', sans-serif;
  color: rgb(57, 57, 57);
  font-size: 11pt;
}

.project-column {
  display: flex;
  flex-direction: column;
  
  flex: 1;
  padding: 0 10px; /* Add padding to create space between columns */
}

.project-subcolumn {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  color:lightgrey;

}

.project-column:last-child {
  text-align: right;
}
.icons-side {
  display: flex;
  align-items: center;
}

.icons-side svg, .icons-side .MuiSvgIcon-root {
  margin-left: 10px;
}

.MuiMenu-paper {
  display: flex;
  flex-direction: column;
}

.MuiMenuItem-root {
  display: flex;
  flex-direction: column;
}