@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}
.my-row {
    margin-left:10px;
}



.content-footer{
    width: 200px;
        background-color: lightblue;
        margin: 0 auto;
}

.text-gold {
    color: gold;

}

.bg-dark1 {
    background-color: #1bc529 !important;
  }

/* Highlight style */
.highlight {
  background-color: #ffff99; /* light yellow */
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: rgb(8, 1, 1);
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.centeralign {
    text-align: center;
}

.justifyalign {
    text-align: justify;
}

.main {

    font-size: 14px; /* Increased text to enable scrolling */
    padding: 0px 10px;
  }

.wrapper {
    display: flex;
    align-items: stretch;
    perspective: 1500px; 
}

#container1 {
    min-width: 40%;
    max-width: 70%;
    white-space: nowrap;
  }

#sidebar {
    min-width: 250px;
    max-width: 30%;
    background: #b3d12e;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: center left; /* Set the transformed position of sidebar to center left side. */
}



#sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg); /* Rotate sidebar vertically by 100 degrees. */
}


#sidebar .sidebar-header {
    padding: 20px;
    background: #d1d421;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #b3d573;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #cccf22;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc !important;
}

#sidebarCollapse {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
}

#sidebarCollapse span {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  display: block;
  background: #555;
  transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
}
#sidebarCollapse span:first-of-type {
  /* rotate first one */
  transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
  /* second one is not visible */
  opacity: 0;
}
#sidebarCollapse span:last-of-type {
  /* rotate third one */
  transform: rotate(-45deg) translate(1px, -1px);
}
#sidebarCollapse.active span {
  /* no rotation */
  transform: none;
  /* all bars are visible */
  opacity: 1;
  margin: 5px auto;
}
@media (max-width: 768px) {
    /* Reversing the behavior of the sidebar: 
       it'll be rotated vertically and off canvas by default, 
       collapsing in on toggle button click with removal of 
       the vertical rotation.   */
    #sidebar {
        margin-left: -250px;
        transform: rotateY(100deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }

    /* Reversing the behavior of the bars: 
       Removing the rotation from the first,
       last bars and reappear the second bar on default state, 
       and giving them a vertical margin */
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }

    /* Removing the vertical margin and make the first and last bars rotate again when the sidebar is open, hiding the second bar */
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }

    .tab { 
        display:inline-block; 
        margin-left: 100px; 
 }
 
 
 
}

#loadingOverlay {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(128, 128, 128, 0.5); /* semi-transparent gray */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Spinner styles */
#loadingOverlay .spinner {
  width: 60px; 
  height: 60px; 
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #fff; /* White top border for spinning effect */
  border-radius: 50%; 
  animation: spin 1s linear infinite; 
  margin-bottom: 20px;
}

/* Animation for spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loading text styles */
#loadingOverlay span {
  color: #fff; 
  font-size: 4em; 
  font-weight: bold; 
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.custom-checkbox {
  transform: scale(2); /* Adjust the scale factor as needed */
  margin:10px; /* Adjust margin to offset any visual issues */
}

