/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./components/settings/settings.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.profile-img {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-image-container {
  border: 3px solid #e8e8e8;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.camera-icon-container {
  position: absolute;
  bottom: 0;
  right: calc(50% - 75px);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #e8e8e8;
  cursor: pointer;
  transform: translate(50%, 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.camera-icon-container:hover {
  background-color: #f8f8f8;
  border-color: #ddd;
}

.camera-icon-container i {
  font-size: 20px;
  color: #666;
}

/* Hide file input */
.profile-img input[type="file"] {
  display: none;
} 


.content-wrapper.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#root, .app-main-wrapper { /* or your main app wrapper */
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.content-wrapper.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  /* Remove min-height! */
}

.footer {
  flex-shrink: 0;
  /* Optionally: */
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
