.tnh-calculator-wrapper * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .tnh-calculator-wrapper {
            /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;*/
					  font-family: "Josefin Sans";
            line-height: 1.5;
            color: #333;
            background-color: #fff;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Container Styles */
        .tnh-calculator-container {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/
            background-color: #fff;
  					margin-bottom: 20px;
						box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.17);
					
        }

        /* Header Styles */
        .tnh-calculator-header {
            background-color: #6c5ce7;
            background-image: linear-gradient(135deg, #6c5ce7 0%, #5441db 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .tnh-calculator-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .tnh-calculator-subtitle {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Form Layout */
        .tnh-calculator-form {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
        }

        .tnh-calculator-section {
            flex: 1 1 300px;
            padding: 30px;
        }

        .tnh-calculator-inputs {
            background-color: #f8f9fa;
            border-right: 1px solid #e9ecef;
        }

        .tnh-calculator-results {
            background-color: #fdfdfd;
        }

        /* Section Title Style */
        .tnh-section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            position: relative;
        }

        .tnh-section-title:after {
           /* content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #6c5ce7;
					  background-color: #f1843e;
            margin-top: 10px;*/
        }

        /* Input Styles */
        .tnh-input-group {
            margin-bottom: 20px;
        }

        .tnh-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #495057;
        }

        .tnh-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .tnh-currency-symbol,
        .tnh-icon-symbol {
            position: absolute;
            left: 12px;
            font-weight: 600;
            /*color: #6c5ce7;*/
					  color: #f1843e;
            z-index: 2;
        }

        .tnh-unit {
            position: absolute;
            right: 10px;
            font-weight: 600;
            color: #6c5ce7;
        }

        .tnh-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .tnh-input[type="number"] {
            text-align: left;
            /*padding-left: 35px;*/
        }

        .tnh-input:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
        }

        /* Button Container */
        .tnh-button-container {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        /* Calculate and Reset Buttons */
        .tnh-calculate-btn,
        .tnh-reset-btn {
            flex: 1;
            border: none;
            padding: 14px 30px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(108, 92, 231, 0.2);
        }

        .tnh-calculate-btn {
            /*background-color: #6c5ce7;
            background-image: linear-gradient(135deg, #6c5ce7 0%, #5441db 100%);
            color: white;*/
        }

        .tnh-calculate-btn:hover {
           /* background-image: linear-gradient(135deg, #5441db 0%, #4636b7 100%);
            box-shadow: 0 6px 8px rgba(108, 92, 231, 0.3);*/
            transform: translateY(-2px);
        }

        .tnh-reset-btn {
            background-color: #6c757d;
            background-image: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
            color: white;
        }

        .tnh-reset-btn:hover {
            background-image: linear-gradient(135deg, #545b62 0%, #495057 100%);
            /*box-shadow: 0 6px 8px rgba(108, 117, 125, 0.3);*/
            transform: translateY(-2px);
        }

        .tnh-calculate-btn:active,
        .tnh-reset-btn:active {
            transform: translateY(0);
        }

        /* Results Grid */
        .tnh-results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        /* Results Card Style */
        .tnh-result-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .tnh-result-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .tnh-featured-result {
            grid-column: span 2;
           /* background-color: #6c5ce7;
            background-image: linear-gradient(135deg, #6c5ce7 0%, #5441db 100%);*/
					  background-color: #1d4c4b;
            color: white;
        }

        .tnh-featured-result .tnh-result-icon svg,
        .tnh-featured-result .tnh-icon-label,
        .tnh-featured-result .tnh-currency {
            color: white;
        }

        /* Result Icons */
        .tnh-result-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 10px;
        }

        .tnh-result-icon svg {
            width: 40px;
            height: 40px;
            /*stroke: #6c5ce7;*/
					  stroke: #f1843e;
            margin-bottom: 5px;
        }

        .tnh-icon-label {
            font-size: 14px;
            color: #6c757d;
        }

        .tnh-result-value {
            font-size: 24px;
            font-weight: 700;
            color: inherit;
        }

        .tnh-currency {
            font-size: 16px;
            /*color: #6c5ce7;*/
					  color: #f1843e;
            margin-right: 2px;
        }

			.icn-clr svg {           
            stroke: #fff;
        }

        /* Reference Chart */
        .tnh-reference-section {
            padding: 30px;
            border-top: 1px solid #e9ecef;
        }

        .tnh-table-container {
            overflow-x: auto;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .tnh-reference-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
        }

        .tnh-reference-table th,
        .tnh-reference-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
        }

        .tnh-reference-table th {
            background-color: #1d4c4b;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
        }

        .tnh-reference-table tr:hover {
            background-color: #f8f9fa;
        }

        .tnh-reference-table tr:last-child td {
            border-bottom: none;
        }

        /* Additional Information Section */
        .tnh-info-section {
            padding: 30px;
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
        }

        .tnh-info-text,
        .tnh-example-text {
            color: #495057;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .tnh-formula-box {
            background-color: #fff;
            border-radius: 6px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .tnh-formula {
            font-family: monospace;
            font-size: 16px;
            margin-bottom: 10px;
            color: #5441db;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .tnh-calculator-form {
                flex-direction: column;
            }
            
            .tnh-calculator-section {
                flex: 1 1 100%;
            }
            
            .tnh-calculator-inputs {
                border-right: none;
                border-bottom: 1px solid #e9ecef;
            }
            
            .tnh-results-grid {
                grid-template-columns: 1fr;
            }
            
            .tnh-featured-result {
                grid-column: span 1;
            }

            .tnh-button-container {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .tnh-calculator-header {
                padding: 20px 15px;
            }
            
            .tnh-calculator-title {
                font-size: 24px;
            }
            
            .tnh-calculator-section {
                padding: 20px 15px;
            }
            
            .tnh-reference-section,
            .tnh-info-section {
                padding: 20px 15px;
            }
        }