/* Global Styles */
body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

/* Card Container */
.vcard-container {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.vcard-container:hover {
  transform: scale(1.05);
}

/* Header Section */
.vcard-header {
  margin-bottom: 20px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #6a11cb;
}

h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.job-title {
  margin: 5px 0;
  font-size: 1rem;
  color: #777;
}

/* Body Section */
.vcard-body {
  margin-bottom: 20px;
}

.vcard-body p {
  margin: 8px 0;
  font-size: 1rem;
}

.vcard-body strong {
  color: #6a11cb;
}

/* Save Button */
.save-button {
  background: #6a11cb;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.save-button:hover {
  background: #2575fc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vcard-container {
    padding: 15px;
  }

  .profile-img {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 1.25rem;
  }

  .save-button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}
