#passkeyLoginButton {
    width: 100% !important;
    max-width: 300px !important;
    background: #1976d2 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-family: 'Avenir', sans-serif !important;
    font-weight: 100 !important;
    padding: 12px 0 !important;
    margin: 20px 0 10px 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: background 0.2s !important;
}
#passkeyLoginButton:hover, #passkeyLoginButton:focus {
    background: #1565c0 !important;
    color: #fff !important;
}
#passkeyLoginButton ion-icon {
    font-size: 22px !important;
    margin-right: 6px !important;
}


/* Switch styling */
.switch {
  position: relative;
  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 60px;
  height: 34px;
  transform: scale(0.75);
  transform-origin: top left;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(60, 60, 60); /* Default background color */
  transition: .4s;
  border-radius: 34px; /* Ensure the slider is rounded */
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(190, 190, 190);
  transition: .4s;
  border-radius: 50%; /* Ensure the slider handle is rounded */
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 1px; /* Shifted 2px to the right */
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(190, 190, 190);
  transition: .4s;
  border-radius: 50%; /* Ensure the slider handle is rounded */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgb(20, 130, 255); /* Updated background color when checked */
}

input:checked + .slider:before {
  transform: translateX(24px) translateY(-50%);
}
input:checked + .custom-slider:before {
  transform: translateX(24px) translateY(-50%);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgb(20, 130, 255); /* Updated box-shadow color */
}

.custom-slider {
  background-color: rgb(80, 80, 80);
  border: 2px solid rgb(120, 120, 120); 
}

input:checked + .custom-slider {
  background-color: rgb(20, 130, 255); /* Updated background color when checked */
}




/* FontAwesome lock icon */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

.lock-icon {
  color: rgb(60, 60, 60) !important;
  pointer-events: none; /* Ensure the lock icon doesn't interfere with toggle functionality */
  font-size: 12px; /* Adjust font size to fit within the circle */
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}



/*////////////////////////////////////////*/


.no-wrap {
  white-space: nowrap;
}

/* Button container styles */
#buttonContainer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: -10px;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 80px; /* adjust this value to change the distance between the buttons */
    position: fixed;
    bottom: 20px; /* add space at the bottom */
    width: calc(100% - 20px); /* subtract space on the sides */
    padding-left: 20px; /* add space on the left */
    padding-right: 20px; /* add space on the right */
    
}


button, input[type="submit"] {
  border-radius: 20px; /* adjust this value to change the roundness of the corners */
  padding: 0px 15px; 
  border: none;  
  height: 25px;
  font-family: 'Avenir';
  background-color: rgb(230, 230, 230); /* inherit the background color from the parent element */
  color: rgb(130, 130, 130); /* change the text color to white */
  cursor: pointer; /* change the cursor when hovering over the button */

}

button, input[type="submit"] {
    border-radius: 20px; /* adjust this value to change the roundness of the corners */
    border: 1px solid inherit; /* add a white border */
    background-color: rgb(45, 45, 45); /* inherit the background color from the parent element */
    color: rgb(210, 210, 210); /* change the text color to white */
    cursor: pointer; /* change the cursor when hovering over the button */
}

.index-button {
    border-radius: 20px; /* adjust this value to change the roundness of the corners */
    border: 1px solid inherit; /* add a white border */
    font-family: 'Avenir';
    background-color: rgb(255, 255, 255); /* inherit the background color from the parent element */
    color: rgb(180, 180, 180); /* change the text color to white */
    cursor: pointer; /* change the cursor when hovering over the button */
    /* Add any additional styles here */
}

.index-button ion-icon {
  margin-right: 2px; /* Adjust the spacing as needed */
  font-size: 2em; 
  background-color: transparent; /* Make the background transparent */
  vertical-align: middle; /* Align the icon vertically with the text */
  position: relative;
  top: 0px; /* Adjust this value to position the icon lower */
}

.round-button {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px; /* Adjust as needed */
    text-align: center;
    /* border: 1px solid rgb(20, 20, 20); /* add a white border */
    background-color: rgb(235, 235, 235) ; /* inherit the background color from the parent element */
    color: rgb(150, 150, 150); /* change the text color to white */
}

.square-button {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin: 5px;
    font-family: 'Avenir', sans-serif;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: normal;
    border: 1px solid rgb(45, 45, 45); /* add a white border */
    background-color:rgb(45, 45, 45) ; /* inherit the background color from the parent element */
    color:rgb(155, 155, 155); /* change the text color to white */
}

.button-container {
  display: flex;
  gap: 10px; /* Add spacing between buttons */
  justify-content: flex-end; /* Align buttons to the right */
  align-items: center; /* Vertically center the buttons */
}

#publishViewcardButton{
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  width: 100px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 12px; /* Adjust as needed */
  text-align: center;
  background-color: rgb(30, 135, 255);  /* inherit the background color from the parent element */
  color: rgb(255, 255, 255); /* change the text color to white */
  border-color: rgb(255, 255, 255);
}


#createViewcardButton {
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  width: 100px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 12px; /* Adjust as needed */
  text-align: center;
  /* border: 1px solid rgb(255, 255, 255); add a white border */
  background-color:  rgb(30, 135, 255);  /* inherit the background color from the parent element */
  color: rgb(255, 255, 255); /* change the text color to white */
  border-color: rgb(255, 255, 255);
}

#createProjectButton {
    border-color: rgb(20, 140, 255); /* Set the border color */
    background-color: rgb(210, 210, 210); /* Set the background color */
    color: rgb(20, 140, 255); /* Set the text color */
}
.popup-btn, .popup-btn-cancel {
  min-width: 100px;
  height: 44px;
  padding: 0 30px;
  font-size: 18px;
  font-family: 'Avenir', sans-serif;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.popup-btn {
  background: rgb(0,200,0);
  color: white;
}

.popup-btn-cancel {
  background: #eee;
  color: rgb(0,200,0);
  margin-left: 10px;
}

#uploadsCenterPanel table {
  width: 600px !important;
  min-width: 600px !important;
  max-width: 600px !important;
  table-layout: fixed;
}