/* Fiverr Tool Styles */
.calc-wrapper {
    font-family: 'Segoe UI', sans-serif;
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.calc-header { padding: 20px; text-align: center; color: white; }
.calc-header h2 { margin: 0; font-size: 1.5rem; }
.calc-body { display: flex; flex-wrap: wrap; }
.calc-inputs { flex: 1; padding: 25px; min-width: 300px; border-right: 1px solid #e0e0e0; }
.calc-results { flex: 1; padding: 25px; background: #f8f9fa; min-width: 300px; display: flex; flex-direction: column; justify-content: center; }
.form-group { margin-bottom: 15px; }
.form-control { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; }
.profit-box { background: #1a5bb8; color: white; padding: 20px; border-radius: 8px; text-align: center; }
.roi-grid { display: flex; gap: 10px; }
.roi-item { flex: 1; background: #fff; padding: 10px; border-radius: 6px; text-align: center; border: 1px solid #ddd; }
.roi-value { display: block; font-weight: 700; color: #333; }

@media (max-width: 768px) {
    .calc-body { flex-direction: column; }
    .calc-inputs { border-right: none; border-bottom: 1px solid #e0e0e0; }
}
/* --- Universal Fix for Cut Text --- */
.form-control, select, input[type="number"], input[type="text"] {
    height: auto !important;       /* Fixed height khatam */
    min-height: 45px !important;   /* Kam se kam itna bada ho */
    line-height: 1.5 !important;   /* Text ke beech mein gap */
    padding: 10px 12px !important; /* Andar ka gap */
    box-sizing: border-box !important; /* Padding ko size mein shamil kare */
    overflow: visible !important;  /* Text chupe nahi */
}