.calc-card {
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08); max-width: 800px;
margin: 30px auto;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
overflow: hidden;
border: 1px solid #f0f0f0;
}
.calc-header {
background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
padding: 25px 30px;
color: white;
text-align: center;
}
.calc-header h3 {
margin: 0;
font-size: 24px;
font-weight: 700;
color: white;
}
.calc-header p {
margin: 5px 0 0;
opacity: 0.9;
font-size: 14px;
}
.calc-body {
padding: 30px;
} .calc-group {
margin-bottom: 25px;
}
.calc-group label {
font-weight: 600;
font-size: 14px;
color: #4a5568;
display: block;
margin-bottom: 8px;
}
.input-wrapper {
position: relative;
}
.input-wrapper input {
width: 100%;
padding: 12px 15px;
padding-right: 30px;
border: 2px solid #e2e8f0;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
color: #2d3748;
transition: all 0.3s ease;
box-sizing: border-box;
}
.input-wrapper input:focus {
border-color: #0073aa;
outline: none;
box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.currency {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
color: #a0aec0;
font-weight: bold;
} .label-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.val-display {
background: #ebf8ff;
color: #0073aa;
padding: 4px 10px;
border-radius: 6px;
font-weight: bold;
font-size: 13px;
}
.styled-range {
-webkit-appearance: none;
width: 100%;
height: 6px;
background: #e2e8f0;
border-radius: 5px;
outline: none;
margin: 10px 0;
}
.styled-range::-webkit-slider-thumb {
-webkit-appearance: none;
width: 22px;
height: 22px;
border-radius: 50%;
background: #0073aa;
cursor: pointer;
box-shadow: 0 2px 6px rgba(0, 115, 170, 0.4);
transition: transform 0.2s;
}
.styled-range::-webkit-slider-thumb:hover {
transform: scale(1.2);
}
.calc-subtext {
font-size: 13px;
color: #718096;
margin-top: 5px;
} .calc-divider {
height: 1px;
background: #e2e8f0;
margin: 20px 0;
}
.result-row {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 12px;
}
.result-row.main span:first-child {
font-size: 15px;
color: #4a5568;
}
.money-highlight {
font-size: 24px;
font-weight: 800;
color: #2d3748;
}
.result-row.secondary {
font-size: 13px;
color: #a0aec0;
} .calc-action {
margin-top: 25px;
}
.btn-shine {
display: block;
width: 100%;
padding: 16px;
background: linear-gradient(90deg, #00d084 0%, #00a065 100%);
color: white;
text-align: center;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 16px;
letter-spacing: 0.5px;
box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
transition: transform 0.2s, box-shadow 0.2s;
box-sizing: border-box;
}
.btn-shine:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 208, 132, 0.6);
}
.btn-shine:active {
transform: translateY(1px);
}