*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f9f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 10px 30px 10px;
}

.profile-card {
  max-width: 400px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 20px;
  position: relative;
}

.profile-card img.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -60px;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

.title {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.actions a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #064e3b;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 40px;
  text-decoration: none;
}

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.tabs button {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: bold;
}

.tabs button.active {
  border-bottom: 2px solid #064e3b;
  color: #064e3b;
}

.tab-content {
  text-align: left;
  padding: 10px;
}

.info-section {
  margin-bottom: 15px;
}

.info-section h4 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 3px;
}

.info-item {
  margin: 5px 0;
  font-size: 14px;
}

.save-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: #064e3b;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
}

/* Popup styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  width: 280px;
}

.popup-content h3 {
  margin-bottom: 15px;
}

.popup-content button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: #064e3b;
  color: #fff;
  cursor: pointer;
}

.popup-content img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
