/* partner-profile.css */
.partner-profile {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
}

.profile-section {
  margin-bottom: 30px;
  padding: 20px;

  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-group textarea {
  min-height: 100px;
}

.logo-upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-preview img {
  max-width: 200px;
  max-height: 200px;
  margin-top: 10px;
}

.submit-btn {
  width: 100%;
  border-radius: 16px;
  padding: 15px 15px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  background: #3c3c3b;
  color: #FFFFFF !important;
  font-size: 14px;
  margin-bottom: 100px;
}

.submit-btn:hover {
  background-color: #181818;
}

.file-upload {
  margin-top: 10px;
}

.btn-upload {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  border-radius: 10px;
  padding: 7px 10px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  background: #3c3c3b;
  color: #FFFFFF !important;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-upload:hover {
  background-color: #181818;
}

.file-upload input[type="file"] {
  display: none;
}

.custom-file-label {
  margin-bottom: 10px;
}

.current-logo {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.remove-logo-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 14px;
  cursor: pointer;
  line-height: 20px;
  text-align: center;
}

.current-logo img {
  max-height: 200px;
  border-radius: 6px;
}
