@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
  }
  
/* HEADER STYLES–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px 0;
  z-index: 1;
  padding: 2%;

}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.192);
  border-radius: 5rem;
  padding: 1% 3%;
  backdrop-filter: blur(8px);
}

.page-header button {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 50px;
  color: white;
  background: #458dfa;
  transition: background 0.3s;
  
}

.page-header button svg {
  flex-shrink: 0;
  margin-left: 5px;
  fill: currentColor;
}

.page-header button:hover {
  background: #0096cc;
}

a{
  color: rgb(0, 0, 0);
  background-color: transparent;
  text-decoration: none;
}

h1{
  font-size: 600;
  left:5%
}


/* CSS for a spinning animation  
#loader {
  border: 5px solid #f3f3f3; 
  border-top: 5px solid #3d3d3d; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
}

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

/**/
/* CM SPINNER */
.cm-spinner {
  height: 150px;
  width: 150px;
  border: 3px solid transparent;
  border-radius: 50%;
  border-top: 4px solid #f15e41;
  animation: spin 4s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the spinner */
  text-align: center; /* Center text horizontally */
}

.cm-spinner img {
  width: 50px; /* Set the width of the logo */
  height: 50px; /* Set the height of the logo */
  position: absolute;
  top: 50%; /* Position the logo in the center */
  left: 50%; /* Position the logo in the center */
  transform: translate(-50%, -50%); /* Center the logo */
}

.cm-spinner::before,
.cm-spinner::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  right: 6px;
  border-radius: 50%;
  border: 4px solid transparent;
}

.cm-spinner::before {
  border-top-color: #bad375;
  animation: spin 3s linear infinite; /* Modified animation duration */
}

.cm-spinner::after {
  border-top-color: #26a9e0;
  animation: spin 1.5s linear infinite; /* Modified animation duration */
}

.spinner-7 {
  width: 60px;
  height: 60px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-radius: 50%;
  animation: spinBorder 1s linear infinite; /* Modified animation name */
}

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

@keyframes spinBorder {
  0% {
    transform: rotate(0deg);
    border-width: 15px;
  }
  50% {
    transform: rotate(180deg);
    border-width: 3px;
  }
  100% {
    transform: rotate(360deg);
    border-width: 15px;
  }
}

.loading-text {
  position: absolute;
  bottom: -20px; /* Adjust as needed for vertical positioning */
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 12px;
}


/* Logout button style */

.logout-menu{
  background-color: aliceblue;
  width: 3rem;
  height: 3rem;
  right: -10%;
}

.logout-menu .collapsed{
  transform: translateX(calc(var(--sidebar-width)*0.98));
}