body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.dashboard-container {
  max-width: 500px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

h2 {
  text-align: center;
  color: #333;
}

.profile-section {
  text-align: center;
  margin-bottom: 30px;
}

.profile-section img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.editable-section {
  margin-bottom: 20px;
}

.editable-section label {
  display: block;
  margin-top: 10px;
  color: #444;
}

.editable-section input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#save-info {
  width: 100%;
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#save-info:hover {
  background: #45a049;
}

.logout {
  background: #f44336;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.logout:hover {
  background: #d32f2f;
}

  .back-button {
    margin: 15px;
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .back-button:hover {
    background-color: #e68a00;
  }
