        .loan-calculator-container {
            display: flex;
            justify-content: space-between;
            max-width: 100%;
            margin: auto;
            background: #fff;
            padding: 10px;
        }
        .loan-calculator-form {
            width: 50%;
        }
        .calculator-title {
            font-size: 20px;
            font-weight: bold;
        }
        .loan-calculator-results {
            width: 100%;
            margin-bottom: 50px;
        }
        input, select, button {
            display: block;
            width: 100%;
            margin-bottom: 10px;
            padding: 8px;
            font-size: 16px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: center;
        }
        th {
            background-color: #007bff;
            color: black;
        }
        button#calculateButton, #resetButton, #printButton {
            cursor: pointer;
            background: #6EC1E4;
            border: none;
            color: white;
            margin-top: 20px;
        }
        #loanAmount,
        #interestRate,
        #repaymentPeriod
        {
            font-weight: normal !important;
        }
        
        @media print
        {    
            .no-print, .no-print *
            {
                display: none !important;
            }
        }