.user-profile {
    padding: 20px;
    background-color: #F8F9F9;
    border-radius: 8px;
    width: 80%;
    align-self: center;
  }
  
  .profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
  }
  
  .profile-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .profile-field {
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .profile-field-content {
    flex-grow: 1;
  }
  
  .profile-field p:first-child {
    margin-bottom: 5px;
    color: #666;
    font-weight: bold;
  }
  
  .profile-field svg {
    color: #999;
    font-size: 20px;
    margin-left: 10px;
  }
  
  .button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .button-container button {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .button-container button:hover {
    background-color: #00a5bb;
  }
  
  @media (max-width: 768px) {
    .profile-grid {
      grid-template-columns: 1fr;
    }
  }