/* Existing styles... */

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 120px;
  max-height: 120px;
}
.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}
.circle {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke: #ff1493;
  transition: stroke-dasharray 1s ease-out;
}
.percentage {
  fill: #ff1493;
  font-family: Arial, sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
}
.circular-chart.pink .circle {
  stroke: #ff1493;
}
/* ✅ NEW: Center the tabs container */
#calculator-tabs {
    display: flex;
    justify-content: center; /* horizontal center */
    gap: 10px; /* spacing between buttons (optional if you keep margin-right) */
    margin: 20px 0;
}

/* EXISTING STYLES – preserved */
#calculator-tabs button {
    padding: 10px 15px;
    margin-right: 10px;
    background: #000;
    color: #ffffff;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Active tab style */
#calculator-tabs button.active {
    background: #ff1493 !important;
    color: #fff !important;
    border-color: #ff1493;
}

/* Optional: remove right margin on last button */
#calculator-tabs button:last-child {
    margin-right: 0;
}

#name-calculator{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	padding: 30px;
    max-width: 400px;
    margin: 50px auto; /* center horizontally */
    background: #23262E;
    border-radius: 12px;
    box-shadow: 0 0 10px #131824;
}
#birth-calculator{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	padding: 30px;
    max-width: 400px;
    margin: 50px auto; /* center horizontally */
    background: #23262E;
    border-radius: 12px;
    box-shadow: 0 0 10px #131824;
}
#name-calculator input {
    padding: 10px;
    margin: 10px;
    width: 100%;
    border: 1px solid #2F333D;
    border-radius: 6px;
    font-size: 16px;
	box-shadow: 0 0 10px #131824;
	background: #2F333D;
	color: #fff;
  }

#birth-calculator input {
    padding: 10px;
    margin: 10px;
    width: 100%;
    border: 1px solid #2F333D;
    border-radius: 6px;
    font-size: 16px;
	box-shadow: 0 0 10px #131824;
	background: #fff;
	color: #2F333D;
  }

  #name-calculator button {
    padding: 10px 20px;
    margin: 10px;
    background-color: #ff4081;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
	width: 100%;
  }

  #birth-calculator button {
    padding: 10px 20px;
    margin: 10px;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
	width: 100%;
  }

#name-calculator label{
	display: block;
	width: 100%;
	color: #fff;
	text-align: left !important;
}