:root {
  --bg-color: #f4f4f4;
  --text-color: #141526;
  --accent-color: #f8c470;
  --border-color: rgba(0, 0, 0, 0.1);
  --input-border-color: rgb(212, 212, 212);
}

/* Dark Mode */
.dark-mode {
  --bg-color: #141526;
  --text-color: #fff;
  --accent-color: #f8c470;
  --border-color: rgba(143, 143, 143, 0.1);
  --input-border-color: rgb(80, 80, 80);
}



.profile-container{
      display: flex;
      justify-content: center;
      padding: 0 2rem;
}

.profile-form {
      padding: 2rem;
      max-width: 90%;
      width: 100%;
    }

    .profile-form h2 {
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .profile-pic {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .profile-pic img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
    }

    .profile-pic button {
      padding: 0.5rem 1rem;
      border: none;
      cursor: pointer;
      border-radius: 6px;
    }

    .change-btn {
      background: #007bff;
    }


    .field {
      margin-bottom: 1rem;
    }

    .field label {
      display: block;
      margin-bottom: 0.3rem;
      font-weight: bold;
    }

    .field input, .field textarea {
      width: 100%;
      padding: 0.7rem;
      border: 1px solid var(--input-border-color);
      border-radius: 6px;
      font-size: 1rem;
      background: transparent;
      color: var(--text-color)
    }

    .save-btn {
      background: var(--accent-color);
      color: #141526;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 1rem;
      float: right;
    }