.edit-user-modal {
  font-family: "Eina03-Regular";
  color: #000;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.experience-resource-wrapper {
  margin-top: 0; /* Remove any extra space above this section */
  margin-bottom: 16px; /* Add space below this section */
}
.experience-resource-wrapper p {
  margin: 0; /* Ensure no extra space within the paragraph */
}

.modal-content {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
  border: none;
  max-width: 640px;
  width: 100%;
  padding: 24px;
}

.edit-user-modal-header {
  display: flex;
  justify-content: space-between;
}

.modal-title {
  font-family: "Eina03-SemiBold";
  font-size: 22px;
}

.modal-body {
  padding: 24px 0;
}

.user-details {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  margin-top: 0; /* Ensure no extra space above this section */
}
.user-details p {
  margin: 0; /* Removes spacing after each paragraph */
}
.user-details strong {
  font-weight: 600;
}

.modal-footer {
  display: flex;
  flex-direction: column; /* Arrange buttons in a vertical column */
  align-items: center; /* Center the buttons horizontally */
  gap: 7px; /* Space between each button */
  padding-top: 24px;
  border-top: 1px solid #ccc;
}

.submit {
  background-color: red;
  color: white;
  width: 400px; /* Fixed button width */
  height: 40px; /* Fixed button height */
  padding: 0 32px; /* Remove top/bottom padding to avoid shifting text vertically */
  display: flex;
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
  border-radius: 2px 0px 0px 0px; /* Custom border radius */
  border: 1px solid transparent; /* Default border style */
  cursor: pointer;
  font-size: 14px;
  font-family: "Eina03-SemiBold";
  text-align: center;
}

.cancel {
  width: 400px; /* Fixed button width */
  height: 40px; /* Fixed button height */
  padding: 24px 32px; /* Button padding */
  gap: 7px; /* Space between inner elements (this won't have an effect if no nested items inside button) */
  border-radius: 2px 0px 0px 0px; /* Custom border radius */
  border: 1px solid #ccc; /* Border color, you can adjust it to your desired color */
  background-color: transparent; /* No background color */
  color: #666; /* Text color */
  cursor: pointer;
  font-size: 14px;
  font-family: "Eina03-SemiBold";
  text-align: center;
  opacity: 1; /* Fully visible by default */
  display: flex;
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
}

.cancel:hover {
  opacity: 0.9; /* Hover effect */
}

.not {
  width: 400px; /* Fixed button width */
  height: 40px; /* Fixed button height */
  padding: 24px 32px; /* Button padding */
  gap: 7px; /* Space between inner elements (this won't have an effect if no nested items inside button) */
  border-radius: 2px 0px 0px 0px; /* Custom border radius */
  background-color: #F7F8F9; /* Background color as per request */
  color: #666; /* Text color (you can adjust this if needed) */
  opacity: 1; /* Initially invisible */
  cursor: pointer;
  font-size: 14px;
  font-family: "Eina03-SemiBold";
  text-align: center;
  display: flex;
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
}

.not:hover {
  opacity: 0.9; /* Hover effect */
}

button:hover {
  opacity: 0.9; /* Hover effect */
}

@media screen and (max-width: 768px) {
  .modal-footer button {
    width: 100%; /* Adjust button width for smaller screens */
    font-size: 12px; /* Smaller font size on mobile */
    padding: 5px 16px; /* Adjust padding for smaller screens */
  }
}
@media screen and (max-width: 768px) {
  .modal-footer button {
    width: 100%; /* Adjust button width for smaller screens */
  }
}
@media screen and (max-width: 768px) {
  .modal-footer button {
    font-size: 12px;
    padding: 5px 16px; /* Adjust padding for smaller screens */
  }
}
@media screen and (max-width: 768px) {
  .edit-user-modal {
    margin-top: 48px;
  }
  .modal-title {
    font-size: 18px;
  }
  .modal-footer button {
    font-size: 12px;
    padding: 5px 16px;
  }
}