.emi-calculator-container {
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .emi-result-box {
    background-color: #e6f0fa;
    border-radius: 12px;
    padding: 25px;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   
  }

  .emi-result-box h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }

  .emi-result-box .emi-amount {
    font-size: 28px;
    font-weight: bold;
    color: #0f3564;
    margin-bottom: 20px;
  }

  .emi-result-box .emi-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .emi-result-box .detail {
    text-align: left;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .emi-result-box .detail .label {
    display: block;
    font-size: 16px;
    color: #777;
    margin-bottom: 4px;
	font-weight: bold;
  }

  .emi-result-box .detail .value {
    font-weight: 600;
    color: #0f3564;
    font-size: 16px;
	font-weight: bold;
  }