        html {
            scroll-behavior: smooth;
        }

      
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 1% auto;
            padding: 0;
            border-radius: 16px;
            width: 90%;
            max-width: 600px;
            max-height: 94vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .modal-header h2 {
            margin: 0;
            color: #1e293b;
            font-size: 1.5rem;
        }

        .modal-close {
            color: #64748b;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: #1e293b;
        }

        #priceForm {
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #374151;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .pricing-table {
            background: #ecf5ff;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
         .pricing-table .show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-table h3 {
            margin: 0 0 1rem 0;
            color: #1e293b;
            font-size: 1.2rem;
        }

        .pricing-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .pricing-table th,
        .pricing-table td {
            text-align: left;
            padding: 0.75rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .pricing-table tr{
color: #2B303B;
        }
        .pricing-table tr:nth-child(1) td:nth-child(3){
            color: #000000;

        }
        .pricing-table tr:nth-child(2) td:nth-child(3),.pricing-table tr:nth-child(3) td:nth-child(3) {
            color: #16A249;
        }

        .pricing-table th {
            font-weight: 600;
            color: #374151;
        }

        .discount-positive {
            color: #16A249;
            font-weight: 600;
        }

        .form-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }
        .form-actions .btn-primary{
            background: #16A249;
        }
        .form-actions .btn-secondary{
            min-width:330px;
            padding: 12px 60px;
        }
       
        @media (max-width: 768px) {
            /* .modal{
                min-height:600px !important;
            } */
            .modal-content {
                margin: 2% auto;
                width: 95%;
            }
            
            .form-actions {
                flex-direction: column;
            }
        }

            .error {
                border-color: #ef4444 !important;
                box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
            }

            .error-message {
                color: #ef4444;
                font-size: 0.875rem;
                margin-top: 0.25rem;
                display: block;
            }