.profile-page-title-box {
  display: none;
}

.profile-page-box {
  gap: 0;
}

.profile-profile-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-profile-field .profile-label-1 {
  margin-bottom: 0;
}

.profile-profile-box-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding-bottom: 40px;
  /* border-bottom: 1px solid #00283c33; */
}

.profile-address-container {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: 1px solid #00283c33;
  display: flex;
  align-items: center;
}

.profile-address {
  flex: 1 1 auto;
  padding: 0 20px;
  outline: none;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.profile-address > span {
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.profile-is-verified {
  display: flex;
  height: 28px;
  border-radius: 9999px;
  border: 1px solid #00283c1f;
  gap: 6px;
  align-items: center;
  padding: 0 8px 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #00283cb2;
  flex-shrink: 0;
  white-space: nowrap;
}

.profile-is-verified img {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.profile-is-notverified {
  display: flex;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid #ffd91a;
  background-color: #ffd91a22;
  gap: 12px;
  font-size: 16px;
  align-items: center;
  padding: 0 24px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
}

.profile-is-notverified:hover {
  background-color: #ffd91a;
}

.profile-phone-address {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  margin-left: 20px;
  overflow: hidden;
  height: 100%;
}

.profile-phone-address .dipc {
  width: 64px;
  margin-right: 14px;
}

.profile-phone-address input {
  background: transparent;
  width: 100%;
  height: 52px;
  font-size: 18px;
  transition: all 0.3s;
  color: #00283c;
  border: none;
  outline: none;
}

.profile-phone-address > span:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .profile-page-title-box {
    display: block;
  }

  .profile-address-container {
    height: 45px;
    border-radius: 12px;
  }
}

@media screen and (max-width: 768px) {
  .profile-is-notverified {
    font-size: 14px;
    height: 30px;
    border-radius: 12px;
    gap: 5px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 640px) {
  .profile-profile-box-1 {
    grid-template-columns: 1fr;
  }

  .profile-profile-box-1 > div:nth-child(2) {
    order: 1;
  }

  .profile-profile-box-1 {
    border: none;
    padding-bottom: 0;
    gap: 30px;
  }

  .profile-button-container {
    width: 100%;
  }

  .profile-action-buttons {
    width: 100%;
    max-width: 100%;
  }

  .profile-button-container button {
    width: 100%;
  }

  .profile-notification {
    left: 16px;
    right: 16px;
    top: 16px;
    min-width: auto;
    max-width: calc(100% - 32px);
  }
}

@media screen and (max-width: 480px) {
  .profile-profile-field input {
    height: 45px;
    border-radius: 12px;
  }

  .profile-phone-address {
    margin-left: 15px;
  }

  .profile-phone-address .dipc {
    width: 54px;
    margin-right: 10px;
  }

  .profile-is-verified {
    padding-right: 7.5px;
  }

  .profile-is-verified img {
    width: 15px;
    height: 15px;
  }

  .profile-address {
    padding: 0 10px 0 15px;
  }

  .profile-readonly-field {
    border-radius: 12px;
  }
}

@media screen and (max-width: 360px) {
  .profile-address {
    font-size: 16px;
  }
}

.profile-button-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.profile-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  align-items: center;
}

.profile-action-buttons button {
  width: 100%;
}

.profile-readonly-field {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.8;
  border-radius: 16px;
}

.profile-readonly-field .profile-address {
  color: #666;
}

.profile-verification-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.profile-verification-popup {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-verification-popup h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.profile-verification-popup p {
  margin-bottom: 16px;
  color: #666;
}

.profile-verification-popup input {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.profile-verification-buttons {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 12px;
}

.profile-verification-buttons button {
  width: 100%;
  /* flex: 1;
  height: 45px; */
}

/* Notification styles */
.profile-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.profile-notification-success {
  background-color: #effaf5;
  border-left: 4px solid #38c172;
  color: #1e7e4f;
}

.profile-notification-error {
  background-color: #fef8f8;
  border-left: 4px solid #e3342f;
  color: #9c2224;
}

.profile-notification-info {
  background-color: #f0f7ff;
  border-left: 4px solid #3490dc;
  color: #2779bd;
}

.profile-notification-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 16px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.profile-notification-close:hover {
  opacity: 1;
}

.profile-address-verified {
  margin: 1rem;
}
