   table {
            width: 100%;
			font-size: 14px;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
 <!--
.STYLE1 {
	color: #FF0000;
	font-weight: bold;
}
-->
        .total {
    
            text-align: left;
        }
		
		
		
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

       .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        h1 {
            text-align: center;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

       .row {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        label {
            display: block;
            width: 120px;
            font-weight: bold;
        }

        input,
        select,
        output,
        button {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            flex: 1;
            min-width: 0;
        }

        button {
            background-color: #007BFF;
            color: white;
            cursor: pointer;
        }

        button:hover {
            background-color: #0056b3;
        }

        #result {
            margin-top: 20px;
        }

       .details {
            display: none;
        }

       .clickable {
            cursor: pointer;
        }

        @media screen and (max-width: 600px) {
            form {
                gap: 5px;
            }

            input,
            select,
            output,
            button {
                font-size: 14px;
            }

           .row {
                flex-direction: column;
            }

            label {
                width: auto;
                margin-bottom: 5px;
            }
        }

       .STYLE1 {
            color: #FF0000;
        }