 .calclutor_box--content {
     display: flex;
     gap: 20px;
 }

 .form-group {
     flex: 1;
     min-width: 200px;
 }

 label {
     font-weight: bold;
     display: block;
     margin-bottom: 5px;
 }

 input,
 select {
     width: 100%;
     padding: 10px;
     font-size: 16px;
 }

 .output-box {
     padding: 20px;
     border-radius: 8px;
     background: #e6f7f2;
     text-align: center;
     height: 320px;

     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .sip {
     font-size: 25px;
     font-weight: 600;
 }

 .output-box p {
     margin-top: 3px;
 }

 .output-box h3 {
     font-weight: 600;
     font-size: 28px;
     color: #00b26f;
 }

 .chart-container {
     height: 320px;
 }

 .chart-container canvas {
     width: 100% !important;
     height: 100% !important;
     object-fit: contain;
 }

 @media(max-width: 768px) {
     .calclutor_box--content {
         flex-direction: column;
         gap: 0;
     }

     .output-box {
         height: auto;
     }

     .sip {
         font-size: 20px;
     }

     .output-box h3 {
         font-size: 25px;
         margin: 10px 0 !important;
     }

     .output-box p {
         font-size: 14px;
     }
 }