.bgp-container {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            padding: 30px 25px;
            max-width: 100%;
            margin: 40px auto;
            border-radius: 14px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .bgp-container label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #333;
        }

        .bgp-container select,
        .bgp-submit {
            display: block;
            width: 100%;
            margin-bottom: 18px;
       
            font-size: 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            transition: all 0.3s ease;
            box-sizing: border-box;
            background-color: #fdfdfd;
            color: #333;
        }

        .bgp-container select:focus,
        .bgp-submit:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
        }

        .bgp-submit {
            background-color: #4a90e2 !important;
            color: #fff !important;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        .bgp-submit:hover {
            background-color: #357abd !important;
        }

        .bgp-result {
            font-weight: 600;
            text-align: center;
            margin-top: 20px;
            font-size: 17px;
            color: #2d2d2d;
            padding-top: 12px;
            border-top: 1px dashed #ccc;
        }

        .bgp-container select option {
            color: #333;
            background-color: #fff;
        }

        html .more-link,
        html .button,
        html [type='submit'],
        html .generic-button a,
        html .generic-button button {
            background: transparent;
        }

        .bgp-container .bgp-submit {
            background-color: #4a90e2 !important;
            width: 100%;
        }