.account-card {
  margin-bottom: 30px;
  padding: 0px 30px 30px;
  background: var(--white);
  border-radius: 8px;
}

.account-title {
  padding: 18px 0px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.account-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.account-title h3 {
  font-size: 20px;
}

.account-title button,
.account-title a {
  border: none;
  width: 55px;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  text-transform: capitalize;
  color: var(--primary);
  background: var(--chalk);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.account-title button:hover,
.account-title a:hover {
  color: var(--white);
  background: var(--primary);
  text-shadow: var(--primary-tshadow);
}

.account-card-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.account-body{
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.account-card-list li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.account-card-list li:hover h6 {
  color: var(--white);
  background: var(--primary);
}

.account-card-list li h5 {
  font-size: 16px;
  font-weight: 500;
}

.account-card-list li h6 {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--chalk);
}

.account-card-link li {
  margin-bottom: 8px;
}

.account-card-link li:last-child {
  margin-bottom: 0px;
}

.account-card-link li a {
  color: var(--gray);
}

.account-card-link li a:hover {
  color: var(--primary);
}

.account-card-link li a i {
  margin-right: 5px;
}

.account-card-text {
  margin-left: 20px;
}

.account-card-text li {
  list-style-type: disc;
  margin-bottom: 20px;
}

.account-card-text li:last-child {
  margin-bottom: 0px;
}

.account-card-form .form-group {
  margin-bottom: 20px;
}

.account-card-form .form-group:last-child {
  margin-bottom: 0px;
}

.account-card-form .form-group .btn {
  width: 100%;
  padding: 10px 30px;
}

@media (max-width: 575px) {
  .account-card {
    padding: 0px 20px 20px;
  }
}

/*=====================================
            PROFILE PAGE STYLE
======================================*/
body {
  background: #f2f2f4;
}

.profile-part {
  padding: 50px 0px 70px;
}

@media (max-width: 767px) {
  .profile-part {
    padding: 50px 0px 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .profile-part {
    padding: 50px 0px 50px;
  }
}
#verification-btn{
  color: white;
  background-color: blue;
  padding: 6px 20px;
  margin-top: 10px;
}  

#verificationModal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

/* Modal content */
.idVerfication-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
}
.idVerificaton-gallery-btn{
  margin-top: 25px;
}
/* Close button */
.idVerfication-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #0e0d0d;
  font-size: 20px;
  cursor: pointer;
}

.idVerfication-close-btn:hover {
  color: #000 !important;
}


/* Buttons */
.idVerification-submit {
  margin: auto;
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background-color: blue;
  color: #fff;
  transition: background-color 0.3s ease;
}


/* Disabled buttons */
.idVerification-submit:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

/* Upload sections */
.idVerfication-upload-data {
  margin-bottom: 20px;
}

/* Animation for modal appearance */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
