/* profile.css */
.profile-main {
  padding: 60px 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #007BFF;
}

.info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.info p {
  margin: 8px 0;
  font-size: 16px;
  color: #555;
}

.actions {
  text-align: center;
  margin-bottom: 40px;
}

.user-details {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-yandex {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.btn-yandex:hover {
    opacity: 0.9;
}