.gsseo-grid-wrapper {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
                align-items: start;
            }
            .gsseo-score-column {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .gsseo-box {
                padding: 20px;
                border-radius: 10px;
                color: #fff;
                font-size: 16px;
                box-shadow: 0 2px 6px rgba(0,0,0,0.1);
                position: relative;
            }
            .gsseo-box.high { background-color: #28a745; }
            .gsseo-box.medium { background-color: #ffc107; color: #000; }
            .gsseo-box.low { background-color: #dc3545; }
            .gsseo-progress {
                background: rgba(255,255,255,0.2);
                border-radius: 20px;
                height: 10px;
                margin-top: 15px;
                overflow: hidden;
            }
            .gsseo-progress-bar {
                height: 10px;
                border-radius: 20px;
                background-color: #fff;
                transition: width 0.5s;
            }
            .gsseo-chart-container {
                background: #fff;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
            }

            @media (max-width: 768px) {
                .gsseo-grid-wrapper {
                    grid-template-columns: 1fr;
                }
            }


            /*****************************/


            .gsseo-two-column-wrapper {
    display: flex;
    gap: 20px;
}
.gsseo-left-column {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gsseo-right-column {
    width: 70%;
}
.gsseo-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}
.gsseo-progress {
    background: #eee;
    border-radius: 5px;
    margin-top: 5px;
    height: 8px;
}
.gsseo-progress-bar {
    height: 8px;
    background: #4caf50;
    border-radius: 5px;
}
.toggle-table-button {
    margin-top: 10px;
    background: #0073aa;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.toggle-table-button:hover {
    background-color: #005177;
}
.score-table-wrapper {
    margin-bottom: 20px;
}


button.go-to-bulk-generator {
    margin-top: 10px;
    background: #0073aa;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}