.container {
  padding: 30px;
}
.profile-container {
  width: 200px;
  height: 200px;
  position: relative; /* For absolute positioning of buttons */
  border-radius: 50%; /* Make it circular */
  overflow: hidden; /* Hide anything outside the circle */
  margin-bottom: 20px;
  margin-left: auto; /* Add this to center */
  margin-right: auto; /* And this to center */
}
.qr-container {
  width: 305px;
  height: 305px;
  position: relative; /* For absolute positioning of buttons */
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: auto; /* Add this to center */
  margin-right: auto; /* And this to center */
}

#profileImage {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio and cover the container */
}

.file-upload-container {
  /*
  position: relative;
  display: inline-block; 
  overflow: hidden;  */
  position: relative;
  /*width: 200px;*/
  margin-bottom: 20px;
}

/* NOT USED */
.custom-file-button {
  background-color: #007bff; /* Primary blue example */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block; /* Or block, depending on layout */
  text-align: center;
  /* Add other button styles as needed */
}

.custom-file-upload2 {
  display: inline-block;
  padding: 10px 24px;
  cursor: pointer;
  background-color: #e8ecef; /* color of UPLOAD button */
  color: black;
  border-radius: 4px;
  transition: background 0.2s;
  font-size: 16px;
  font-family: inherit;
  border: none;
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 24px;
  cursor: pointer;
  background-color: #007bff; /* color of SAVE button */
  color: white;
  border-radius: 4px;
  transition: background 0.2s;
  font-size: 16px;
  font-family: inherit;
  border: none;
}
.custom-file-upload:hover {
  background-color: #0056b3;
}
#file-selected {
  margin-left: 12px;
  font-style: italic;
  color: #444;
}

.hidden-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer; /* Ensures the cursor indicates clickability */
}
.misc-text {
  color: black;
  font-weight: bold;
  position: relative;
  text-align: left;
}
.info-text {
  text-align: left;
  color: gray;
  font-weight: normal;
}
.label-text {
  text-align: left;
  color: black;
  font-weight: normal;
}
.input-text-spacing {
  padding-right: 20px;
}

/* SLIDER */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML 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: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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

a.nav-link:not(.active):hover {
  background-color: #000;
  color: white;
  text-decoration: none; /* Removes the underline on hover */
}

.preview-links {
  text-decoration: none;
}
