        #globalCal {
            margin-bottom: 2rem;
        }

        .global-container {
            background: #2a2d30;
            backdrop-filter: blur(10px);
            border-radius: 6px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgb(12 12 12 / 72%);
        }

        .global-header {
            background: linear-gradient(135deg, #f9a321, #d7a65e);
            color: white;
            padding: 1rem;
            border-radius: 6px 6px 0px 0px;
        }

.global-header h2{
	margin-bottom: 0px;
}

        .calculator-body {
            padding: .5rem;
        }

        .instruction-text {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            color: #2d3436;
            padding: 1rem;
            border-radius: 3px;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 500;
        }

        .input-group-custom {
            margin-bottom: 1.5rem;
        }

        .input-group-custom label {
            font-weight: 600;
            color: #d3d3d3;
            margin-bottom: 8px;
            display: block;
            font-size: 0.9rem;
        }

        .input-with-unit {
            display: flex;
            gap: 0.5rem;
        }

        .form-control {
            flex: 1;
            padding: 0.5rem;
            background-color: #3c3f42 !important;
            color: #ccc !important;
            border: 1px solid #495057 !important;
            border-radius: 5px !important;
            font-size: 1rem;
            transition: all 0.2s;
            width: 100%;
        }

        .form-control::placeholder {
            color: #a0aec0;
            opacity: 1;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-select {
            padding: 0.5rem;
            min-width: 120px;
            font-size: 1rem;
            background-color: #3c3f42 !important;
            color: #ccc !important;
            border: 1px solid #495057 !important;
            border-radius: 5px !important;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0) !important;
            width: 45%;
        }

        .form-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .readonly-field {
            background-color: #f9fafb;
            color: #6b7280;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .btn-calculate {
            background: linear-gradient(135deg, #ff8e22 0%, #e1b37c 100%);
            color: white;
        }

        .btn-calculate:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .btn-reset {
            background: linear-gradient(135deg, #ff7b7b 0%, #ff9a9e 100%);
            color: white;
        }

        .btn-reset:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4);
        }

        .calculation-steps {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            border-left: 4px solid #0ea5e9;
        }

        .calculation-steps h4 {
            color: #0c4a6e;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .step-content {
            color: #0c4a6e;
        }

        .step-item {
            margin-bottom: 0.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #bae6fd;
        }

        .step-item:last-child {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .row {
                grid-template-columns: 1fr;
            }

            .btn-group {
                flex-direction: column;
            }
        }