main.container {
  padding: 80px 10%;
  background-color: #f4f5f9;
  min-height: calc(100vh - 400px);
}

.profile {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.profile-card {
  background: #ffffff;
  border: 1px solid #d1d6e6;
  border-radius: 2px;
  width: 100%;
  max-width: 600px;
  padding: 40px;
}

.profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #121c2d;
  margin-bottom: 30px;
  border-bottom: 1px solid #d1d6e6;
  padding-bottom: 15px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: #d1d6e6;
  border: 1px solid #d1d6e6;
  margin-bottom: 30px;
}

.profile-info p {
  background-color: #fafbfc;
  margin: 0;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #121c2d;
}

.profile-info p strong {
  color: #606b85;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

#userName, #userEmail, #userPhone, #userRole {
  font-weight: 600;
  color: #121c2d;
}

#logoutBtn {
  width: 100%;
  height: 48px;
  background-color: transparent;
  border: 1px solid #f22f46;
  color: #f22f46;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#logoutBtn:hover {
  background-color: #f22f46;
  color: #ffffff;
}

@media (max-width: 768px) {
  main.container {
    padding: 40px 20px;
  }
  
  .profile-card {
    padding: 24px;
  }

  .profile-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}