        .calculator-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            margin: 40px auto;
            max-width: 1200px;
        }

        .results-section {
            flex: 1;
            background: linear-gradient(to bottom, #3799d1, rgb(128, 208, 199)
);
            color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .results-section h2,
        .results-section p {
            text-align: center;
        }

        .details-toggle {
            cursor: pointer;
            font-size: 0.9rem;
            text-align: center;
            margin-top: 20px;
        }

        .details-toggle:hover {
            text-decoration: underline;
        }

        .details-container {
            display: none;
            margin-top: 20px;
        }

        .details-container table {
            width: 100%;
            color: #fff;
            border-collapse: collapse;
        }

        .details-container th,
        .details-container td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-section {
            flex: 1;
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            height: 45px;
        }

        .slider {
            width: 100%;
        }

        .calculate-btn {
            background-color: #2982b5;
            color: #fff;
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .calculate-btn:hover {
            background-color: #3799d1;
        }