/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", serif;
}
a {
  text-decoration: none;
  color: black;
}
/* Reset Styles */
/* Root styles */
:root {
  /* ---primaryBackground: linear-gradient(90deg, #0f766e 0%, #20c997 100%); */
  ---reversePrimaryBackground: linear-gradient(
    180deg,
    #b03060 0%,
    #ff7f9c 100%
  );
  /* ---secondaryColor: #0f766e; */
  ---primaryColor: #ed3284;
  ---secondaryColor: #b03060;
  ---primaryBackground: linear-gradient(90deg, #b03060 0%, #ff7f9c 100%);
  ---secondaryBackground: linear-gradient(145deg, #fdfdfd, #f9dce3);
}
#container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

#advertise1 {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#advertise1 a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#advertise1 img {
  width: 95%;
  max-height: 600px;
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid var(---secondaryColor);
  border-radius: 3px;
}

#advertise2 {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#advertise2 a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#advertise2 img {
  width: 95%;
  max-height: 600px;
  margin: 0 auto;
  object-fit: cover;
  border: 1px solid var(---secondaryColor);
  border-radius: 3px;
}
#main {
  grid-column: span 8;
  border: 1px solid var(---secondaryColor);
}

/* Top Bar styles */
#topBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  background: var(---secondaryColor);
  color: white;
  padding: 10px;
}
#topBar div {
  display: flex;
  align-items: center;
  gap: 5px;
}
#topBar a {
  color: white;
  letter-spacing: 2px;
}

/* Top Main Bar */
#topMainBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(---secondaryColor);
  color: white;
  height: 50px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.199);
}
.tmbLeft img {
  height: 40px;
  cursor: pointer;
}
.tmbMiddle {
  font-size: 20px;
}
.connects {
  font-size: 20px;
  text-align: center;
  color: white;
  margin-bottom: 15px;
  display: none;
}
.topBarConnects {
  font-size: 20px;
  text-align: center;
  color: white;
}
.tmbRight {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
}
.tmbRight form {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-top: -1px;
}
.tmbRight form button {
  outline: none;
  border: none;
  color: white;
  font-size: 20px;
  background: none;
  cursor: pointer;
}
.tmbRight span {
  cursor: pointer;
}
.tmbRight span:first-child {
  border-right: 2px solid white;
  padding-right: 3px;
}

/* main part */
#mainPart {
  display: flex;
  /* align-items: start; */
  /* gap: 20px; */
  min-height: 90vh;
  width: 100%;
}
#sideBar {
  min-width: 280px;
  padding: 10px;
  background: var(---secondaryColor);
}
#publishBtn {
  background: linear-gradient(90deg, #20c997 0%, #28a745 100%);
}
.sideBarProfile {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 10px;
  /* background: linear-gradient(145deg, #ffffff, #f8f8f8); */
  background: var(---secondaryBackground);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease-in-out;
}
.sideBarProfile:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* Profile Image */
.sideBarProfile img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(---secondaryColor);
  transition: all 0.3s ease-in-out;
}
.sideBarProfile img:hover {
  transform: scale(1.05);
}

/* Status */
.status {
  font-size: 13px;
  padding: 5px 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #fce4e4;
  color: rgb(153, 8, 8);
}
.statusGreen {
  font-size: 13px;
  padding: 5px 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 128, 0, 0.164);
  color: green;
}

/* Description */
.description {
  font-weight: 500;
  width: 100%;
}
.description table td {
  padding: 4px 8px;
  font-size: 14px;
  color: #333;
}
.description table td:last-child {
  text-transform: capitalize;
}
/* Action Buttons */
.actionButtons {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.actionButtons button {
  flex: 1;
  font-size: 14px;
  padding: 7px 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.actionButtons a {
  flex: 1;
  font-size: 14px;
  padding: 7px 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.actions button {
  font-size: 14px;
  padding: 7px 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  padding: 7px 10px;
}

.actionButtons .editButton {
  background-color: #222;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}
.actionButtons .editButton:hover {
  background-color: #444;
}
.actionButtons button:last-child {
  background: var(---primaryBackground);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.actions button:last-child {
  background: var(---primaryBackground);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.actionButtons button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.actions button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.actionButtons button:first-child {
  background-color: #e91e63;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}
.actionButtons a:first-child {
  background: var(---primaryBackground);
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
.actions button:first-child {
  background-color: #e91e63;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}
.sideBarLinks button {
  margin-bottom: 5px;
  font-size: 17px;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
  background: var(---primaryBackground);
  border: none;
  outline: none;
  text-align: left;
}
.sideBarLinks button:hover {
  background: var(---reversePrimaryBackground);
}
.sideBarLinks a {
  margin-bottom: 5px;
  font-size: 17px;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
  background: var(---primaryBackground);
  border: none;
  outline: none;
  text-align: left;
}
.sideBarLinks a:hover {
  background: var(---reversePrimaryBackground);
}
.sideBarLinks {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

/* main content */
#mainContent {
  width: 100%;
  overflow-y: auto;
  height: 90vh;
  padding-bottom: 20px;
}
.mainContent {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  place-content: start;
}
.mainContent .sideBarProfile {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.295);
  /* min-width: 250px; */
  width: 100%;
  height: 350px;
  transition: all 0.3s;
}
.mainContent .sideBarProfile:hover {
  box-shadow: 0px 0px 15px var(---secondaryColor);
}
.mainContent .sideBarProfile button {
  width: 90px;
}

.filter {
  width: 100%;
  background: var(---reversePrimaryBackground);
  color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.selects {
  display: flex;
  align-items: center;
  gap: 10px;
}
.selects select {
  font-size: 14px;
  padding: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  border: none;
  outline: none;
  min-width: 105px;
}
.selects button {
  font-size: 14px;
  padding: 6px 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  border: none;
  outline: none;
  cursor: pointer;
  background: var(---primaryColor);
  color: white;
}
.selects a {
  font-size: 14px;
  padding: 6px 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  border: none;
  outline: none;
  cursor: pointer;
  background: black;
  color: white;
}
/* .selects input {
  font-size: 14px;
  padding: 6px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: none;
  outline: none;
  padding-right: 25px;
  transition: all 0.3s;
  width: 150px;
}
.selects input:focus {
  width: 250px;
  transition: all 0.3s;
} */
.selects .fa-magnifying-glass {
  position: absolute;
  right: 2px;
  top: 6px;
  color: black;
}

/* Person details */
/* Container */
.person-details {
  max-width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* .person-details {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  background: var(---secondaryBackground);
  border: 1px solid gainsboro;
  display: flex;
  flex-direction: column;
  gap: 20px;
} */

/* Profile Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  /* border-bottom: 2px solid #eee; */
  padding-bottom: 20px;
  background: var(---secondaryBackground);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.personDetailsLowerContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: var(---secondaryBackground);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.profile-header .actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.profile-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(---secondaryColor);
}

.profile-basic h2 {
  font-size: 22px;
  color: var(---secondaryColor);
}

.profile-basic .id {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}

.profile-basic p {
  margin: 5px 0;
  color: #444;
}

.text-green {
  color: #10b981;
}

.personImageGallery {
  width: 100%;
  height: 410px;
  border: 1px solid var(---primaryColor);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
}
.pigMain {
  position: relative;
}

.pigMain img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.pigsub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.pigsub img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
}
.pdlcleft {
  grid-column: span 2;
}
.pdlcright {
  grid-column: span 1;
}
.advertiseSection {
  width: 100%;
  height: 350px;
  border: 1px solid var(---primaryColor);
  border-radius: 3px;
}
.advertiseSection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoomInBtn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 20px;
  color: var(---primaryColor);
}

.zoomImageContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: black;
  padding-top: 20px;
  transform: scale(0);
  transition: all 0.3s;
}
.zoomImageContent {
  max-width: 60%;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.zicMain {
  min-height: 70vh;
  max-height: 70vh;
}
.zicMain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.zicSub {
  height: 90%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.zicSub img {
  grid-column: span 1;
  height: 150px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}
.zicClose {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}
.viewBtn {
  color: var(---primaryColor);
  font-weight: bold;
}
/* Info Sections */
.info-section {
  margin-bottom: 20px;
}
.warning {
  padding: 5px;
  border: 1px solid var(---primaryColor);
  border-radius: 5px;
  background-color: white;
  font: 15px;
}
.info-section h3 {
  font-size: 18px;
  color: var(---secondaryColor);
  margin-bottom: 10px;
}

.info-section ul {
  list-style: none;
  padding-left: 10px;
}

.info-section li {
  margin-bottom: 5px;
  color: #333;
}

/* Buttons */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.btn.primary {
  background: var(---primaryBackground);
}

.btn.secondary {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.btn.info {
  background: linear-gradient(90deg, #2563eb, #1e40af);
}

.btn.danger {
  background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.btn:hover {
  opacity: 0.9;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(---primaryBackground);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* profile update */
.profileFormContainer {
  width: 850px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 20px;
  background: var(---secondaryBackground);
  border: 1px solid gainsboro;
}

.profileFormContainer h2 {
  background: var(---secondaryColor);
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 20px;
}

form {
  margin-top: 15px;
}

.formGroup {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.formGroup .field {
  flex: 1;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

.formActions {
  margin-top: 25px;
  text-align: right;
}

.saveBtn {
  background: var(---primaryBackground) !important;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
}

.saveBtn:hover {
  opacity: 0.9;
}

.imageUpload {
  display: flex;
  align-items: center;
  gap: 20px;
}

.imageUpload img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(---secondaryColor) !important;
}

/* Rules and regulations */
.rules-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  line-height: 1.6;
  background: var(---secondaryBackground);
  border: 1px solid gainsboro;
}

.rules-container h1 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(---secondaryColor);
  text-align: center;
  border-bottom: 2px solid var(---primaryColor);
  padding-bottom: 10px;
}

.rules-content ol {
  padding-left: 20px;
}

.rules-content li {
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  background: white;
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 4px solid var(---primaryColor);
  transition: 0.2s;
}

.rules-content li:hover {
  background: var(---secondaryBackground);
}

/* Register bio data */
.registerBiodataContainer {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: var(---secondaryBackground);
  border: 1px solid gainsboro;
}
.registerBiodataContainer h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(---secondaryColor);
}
.registerBiodataContainer .registerForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.registerBiodataContainer fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}
.registerBiodataContainer legend {
  font-weight: bold;
  color: var(---primaryColor);
  padding: 0 10px;
}
.registerBiodataContainer label {
  display: flex;
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.registerBiodataContainer input,
.registerBiodataContainer select,
.registerBiodataContainer textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}
.registerBiodataContainer textarea {
  resize: none;
  height: 70px;
}
.registerBiodataContainer button {
  background: var(---primaryBackground);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.registerBiodataContainer button:hover {
  opacity: 0.9;
}
.formFlex {
  display: flex;
  align-items: center;
  gap: 15px;
}
.formFlex div {
  width: 100%;
}
.formFlex div:last-child {
  max-width: 200px;
}
.formFlex input {
  width: 100%;
}
.updateBioText {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.updateBioText button {
  padding: 7px 10px;
  border: none;
  background: var(---primaryBackground);
  color: white;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
}
.present {
  font-size: 14px;
  margin: 5px 0;
  opacity: 0.8;
}
.formFlexImg {
  min-width: 150px;
  max-width: 150px;
  min-height: 100px;
  max-height: 100px;
  border-radius: 10px;
  object-fit: cover;
}
.formFlex2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.formFlex2 div {
  width: 100%;
}
.formFlex2 input {
  width: 100%;
}
/* Favorite page */
.sideBarProfile {
  position: relative; /* allow absolute child positioning */
}

.favoriteIcon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(---primaryColor); /* use your theme color */
  font-size: 18px;
}
.favoriteIcon i {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Login page */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: var(---secondaryBackground);
}

.login-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.login-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(---secondaryColor);
}

.login-card .form-group {
  margin-bottom: 15px;
}

.login-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.login-card input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

.login-card input:focus {
  border-color: var(---primaryColor);
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: var(---primaryBackground);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
}

.register-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.register-link a {
  color: var(---primaryColor);
  font-weight: bold;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}
.home-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #ed3284;
  text-decoration: none;
  transition: color 0.3s;
}
.home-icon:hover {
  color: #b03060;
}
.login-card,
.register-card {
  position: relative; /* so the icon stays inside */
}
.passLabel {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.passLabel button {
  color: var(---primaryColor);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
}
#forgetPassContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  max-width: 90%;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, 0.5); */
  transform: scale(0);
  transition: transform 0.1s;
}
.forgetPassContent {
  background-color: white;
  padding: 10px;
  border-radius: 3px;
  width: 450px;
  gap: 10px;
  position: relative;
  border: 1px solid var(---primaryColor);
}
.forgetPassContent form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.forgetPassContent a {
  color: var(---primaryColor);
  font-weight: bold;
}
#forgetPassContainerCloseBtn {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: var(---primaryColor);
}
/* Registration page */
.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: var(---secondaryBackground);
}

.register-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 28px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.register-card h2 {
  text-align: center;
  margin-bottom: 22px;
  color: var(---secondaryColor);
}

.register-card .form-group {
  margin-bottom: 16px;
}

.register-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.register-card input,
.register-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

.register-card input:focus,
.register-card select:focus {
  border-color: var(---primaryColor);
}

.register-btn {
  width: 100%;
  padding: 12px;
  background: var(---primaryBackground);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.register-btn:hover {
  transform: translateY(-2px);
}

.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-link a {
  color: var(---primaryColor);
  font-weight: bold;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Home page */
.public-home {
  color: #333;
  max-width: 1270px;
  margin: 0 auto;
  border: 1px solid var(---secondaryColor);
}

/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1741441033511-2e8441b949fb?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTMxfHxiYW5nbGFkZXNoaSUyMG1hcnJpYWdlfGVufDB8MHwwfHx8MA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 12;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.hero-content {
  z-index: 50;
}
.hero h1 span {
  color: #ffd1dc;
}
.hero p {
  margin: 15px 0;
}
.hero .btn-primary,
.hero .btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
}
.hero .btn-primary {
  background: var(---primaryBackground);
  color: white;
  font-weight: bold;
  transition: all 0.3s;
}
.hero .btn-primary:hover {
  transform: scale(1.02);
}
.hero .btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s;
}
.hero .btn-secondary:hover {
  transform: scale(1.02);
}
/* About */
.about {
  text-align: center;
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

/* Features Section */
.features {
  background: #fff0f5;
  padding: 60px 20px;
  text-align: center;
}
.features h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #b30059;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.feature i {
  font-size: 40px;
  color: var(---primaryColor);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(---secondaryColor);
}
.feature p {
  font-size: 14px;
  color: #555;
}

/* Hover Effects */
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: var(---secondaryBackground);
}
.feature:hover i {
  transform: scale(1.2) rotate(8deg);
  color: var(---primaryColor);
}

/* Testimonials Section */
.testimonials {
  background: #ffe6ec;
  padding: 60px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #b30059;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-6px) rotate(2deg);
  background: var(---secondaryBackground);
}
.testimonial img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.testimonial-text p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}
.testimonial-text span {
  font-weight: bold;
  color: #b30059;
  font-size: 14px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cta .btn-primary {
  background: var(---primaryBackground);
  color: #fff;
  font-weight: bold;
}
/* Footer */
.footer {
  background: var(---primaryBackground);
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 40px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}
.footer-about h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 6px 0;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #ffd1dc;
}
.footer-contact p {
  margin: 5px 0;
}
.footer-contact i {
  margin-right: 8px;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 14px;
}

/* View as page */
.viewAs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.viewAs-card {
  width: 800px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
}
.viewAs-card h2 {
  margin: 0;
  font-size: 24px;
  color: var(---primaryColor);
}
.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.viewAs-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.viewAs-tabs button {
  padding: 8px 16px;
  border: none;
  background: #f3f3f3;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.viewAs-tabs button.active {
  background: var(---primaryBackground);
  color: #fff;
}
.viewAs-tabs button:hover {
  background: var(---primaryColor);
  color: #fff;
}
.profile-preview {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.profile-photo img {
  width: 180px;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
}
.profile-info h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}
.profile-info .status {
  font-size: 14px;
  color: green;
  margin-left: 10px;
}
.profile-info p {
  margin: 6px 0;
  font-size: 15px;
  color: #444;
}
.viewAs-action {
  text-align: right;
}
.edit-btn {
  padding: 10px 20px;
  border: none;
  background: var(---primaryColor);
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.edit-btn:hover {
  background: var(---secondaryColor);
}

/* Last upload profiles */
.latest-profiles {
  padding: 60px 20px;
  background: #ffe6ec;
  text-align: center;
}
.latest-profiles .section-title {
  font-size: 28px;
  margin-bottom: 5px;
  color: var(---primaryColor);
}
.latest-profiles .section-subtitle {
  font-size: 14px;
  margin-bottom: 40px;
  color: #666;
}
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.profile-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  background: var(---secondaryBackground);
}
.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.profile-card:hover img {
  transform: scale(1.1);
}
.profile-card h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #333;
}
.profile-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.view-btn {
  background: var(---primaryBackground);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.view-btn:hover {
  background: var(---secondaryColor);
}

/* Publish modal */
/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 420px;
  max-width: 95%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  position: relative;
}
.modal-content:hover {
  background: var(---secondaryBackground);
}
/* Title */
.modal-content h2 {
  margin-bottom: 15px;
  color: var(---primaryColor);
}

/* Intro */
.modal-content .intro-text {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

/* Charges Box */
.charges-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  border-left: 4px solid var(---primaryColor);
}
.charges-box h3 {
  margin-bottom: 10px;
  color: var(---secondaryColor);
}
.charges-box ul {
  list-style: none;
  padding: 0;
}
.charges-box li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}
.charges-box i {
  color: var(---primaryColor);
  margin-right: 6px;
}

/* Note */
.note {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/* Buttons */
#payBtn {
  background: var(---primaryBackground);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  /* transition: background 0.3s; */
}
#payBtn:hover {
  background: var(---secondaryColor);
}

/* Close Icon */
.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}
.close:hover {
  color: var(---primaryColor);
}
/* Status select */
.status-select-container {
  max-width: 900px;
  margin: auto;
}
.status-select {
  gap: 6px;
  width: 150px;
  padding: 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-select label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.status-select .btnActive {
  font-size: 14px;
  padding: 7px 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: 100px;
  background: linear-gradient(90deg, #20c997 0%, #28a745 100%);
  color: white;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.status-select .btnInactive {
  font-size: 14px;
  padding: 7px 0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: 100px;
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  font-weight: 600;
  letter-spacing: 0.6px;
}
/* Notification */
.notification-container {
  max-width: 700px;
  margin: 30px auto;
  padding: 20px;
  background: var(---secondaryBackground);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid gainsboro;
}

.notification-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(---primaryColor);
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

.notification-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.notification-card:last-child {
  border-bottom: none;
}

.notification-card:hover {
  background: #fff6f9; /* light pink highlight */
  border-radius: 8px;
}

.notification-card i {
  font-size: 22px;
  color: var(---secondaryColor);
  margin-top: 3px;
}

.notification-text p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.notification-text .time {
  font-size: 13px;
  color: #888;
}
/* Sidebar button */
#sidebarClose {
  display: none !important;
  position: absolute;
  bottom: 5px;
  right: 10px;
  background: var(---primaryBackground);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#sidebarClose i {
  font-size: 18px;
}

#sidebarClose:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #a02b55 0%, #ff6688 100%);
}

/* Mobile navbar */
#mobileNav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(---secondaryColor);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
}
#mobileNav button {
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px;
  border: none;
  outline: none;
  background: none;
}
#mobileNav button i {
  font-size: 18px;
}
#mobileNav button:hover {
  background: var(---primaryBackground);
}
#mobileNav a {
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px;
  border: none;
  outline: none;
  background: none;
}
#mobileNav a i {
  font-size: 18px;
}
#mobileNav a:hover {
  background: var(---primaryBackground);
}
#mobileNav .menuLink {
  margin-top: -30px;
}
#mobileNav .menuLink:hover {
  background: none;
}
#mobileNav .menuLink span {
  background: var(---primaryBackground);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.sidebarOpenAnimation {
  transform: translateX(0);
  transition: all 1s;
}
.filter {
  border-top: 1px solid #cc5480;
}
/* Mobile Filter Container */
.mobileFilter {
  display: none;
}
/*  */
.mobileFilterContainer {
  height: 100vh;
  background: var(---secondaryColor);
  width: 70%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 10px;
  transition: all 1s;
}
.mobileSelectSelects {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.mobileSelectSelects select {
  font-size: 14px;
  padding: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  border: none;
  outline: none;
  min-width: 105px;
}
.mobileSelectSelects input {
  font-size: 14px;
  padding: 6px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: none;
  outline: none;
  padding-right: 25px;
  transition: all 0.3s;
  width: 100%;
}
.mobileSelectSelects .fa-magnifying-glass {
  position: absolute;
  right: 2px;
  top: 6px;
  color: black;
}
.mobileSelectSelects button {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  border: none;
  outline: none;
  cursor: pointer;
  background: var(---primaryColor);
  color: white;
}
.mobileSelectSelects a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  border: none;
  outline: none;
  cursor: pointer;
  background: black;
  color: white;
  text-align: center;
}
/* Sidebar button */
#sidebarClose2 {
  position: absolute;
  bottom: 5px;
  left: 10px;
  background: var(---primaryBackground);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#sidebarClose2 i {
  font-size: 18px;
}

#sidebarClose2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #a02b55 0%, #ff6688 100%);
}
.closeFilterSidebar {
  transform: translateX(120%);
  transition: all 1s;
}
.lookingFor {
  min-width: 120px !important;
}
/* Buy connects page */
.buy-connects {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.buy-connects .section-title {
  font-size: 28px;
  font-weight: bold;
  color: var(---primaryColor);
  margin-bottom: 10px;
}

.buy-connects .section-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  flex: 1;
  min-width: 260px;
  max-width: 300px;
  transition: transform 0.3s ease;
  border: 1px solid gainsboro;
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card h3 {
  font-size: 20px;
  color: var(---secondaryColor);
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 26px;
  font-weight: bold;
  color: var(---primaryColor);
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.plan-card ul li {
  margin: 8px 0;
  font-size: 14px;
  color: #444;
}

.plan-card ul li i {
  color: var(---primaryColor);
  margin-right: 8px;
}

.plan-btn {
  display: inline-block;
  background: var(---primaryBackground);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.plan-btn:hover {
  opacity: 0.9;
}

/* Highlighted Middle Card */
/* Badge for Most Popular */
.featured {
  position: relative;
  transform: scale(1.08);
  border: 2px solid var(---primaryColor);
  background: linear-gradient(145deg, #fff, #fff0f5);
}

.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(---primaryBackground);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
.filterBtn {
  border: 1px solid rgb(252, 252, 252) !important;
}
#filterIcon {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
/* alert styles */
#alert {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.253);
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
.alertContent {
  width: 300px;
  height: 200px;
  background-color: white;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 2px solid var(---primaryColor);
}
#alertClose {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.alertText {
  background-color: #e9478277;
  margin: 10px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  border: 2px solid var(---primaryColor);
}
.alertForm {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.alertForm a {
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}
.alertForm a:first-child {
  background: var(---primaryBackground);
  color: white;
}
.alertForm a:last-child {
  background: linear-gradient(90deg, #28a745);
  color: white;
}
/* Loader styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white; /* Or use your theme color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Spinner style */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid var(---primaryColor);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive */
@media only screen and (max-width: 1500px) {
  #advertise1 {
    display: none;
  }

  #advertise2 {
    display: none;
  }

  #main {
    grid-column: span 12;
    border: 1px solid var(---secondaryColor);
  }
}
@media only screen and (max-width: 1200px) {
  .connects {
    display: block;
  }
  .topBarConnects {
    display: none;
  }
  .sidebarCloseAnimation {
    transform: translateX(-100%);
    transition: all 1s;
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-card {
    height: 270px;
    position: relative;
  }
  .profile-card .view-btn {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
  #topBar {
    flex-direction: column;
    gap: 10px;
  }
  .feature-list {
    gap: 10px;
  }

  #advertise1,
  #advertise2 {
    display: none;
  }

  #main {
    grid-column: span 12;
  }
  #topMainBar {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 999;
  }
  .tmbMiddle {
    display: none;
  }

  #sideBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
  }
  #sidebarClose {
    display: flex !important;
  }
  .filter .selects {
    display: none;
  }
  .mainContent {
    grid-template-columns: repeat(1, 1fr);
  }
  .mainContent .sideBarProfile {
    width: 80%;
    margin: 0 auto;
  }
  .mainContent .sideBarProfile .description table {
    width: 90%;
    margin: 0 auto;
  }
  .person-details {
    margin: 0 10px;
    margin-top: 10px;
    padding: 5px;
  }
  .registerBiodataContainer {
    margin-left: 10px;
    margin: 10px;
  }
  .rules-container {
    margin-left: 10px;
    margin-right: 10px;
  }
  #mobileNav {
    display: flex;
  }
  .notification-container {
    margin-left: 10px;
    margin-right: 10px;
  }
  #mainContent {
    padding-bottom: 100px;
  }
  .profile-preview {
    flex-direction: column;
  }
  .profile-photo {
    width: 100%;
  }
  .profile-photo img {
    width: 100%;
  }
  #topBar {
    display: none;
  }
  .status-select-container {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mobileFilter {
    display: block;
  }
  .profile-header {
    flex-direction: column;
  }
  .profile-basic {
    text-align: center;
  }
  .personDetailsLowerContainer {
    grid-template-columns: repeat(1, 1fr);
    padding: 5px;
  }
  .zoomImageContent {
    max-width: 95%;
    margin: 0 auto;
  }
  .formFlex2 {
    flex-direction: column;
  }
  .formFlexImg {
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    max-height: 200px;
  }
}
