/**
 * File: theme-adapter.css
 *
 * @package VoIP Portal Pro
 *
 * Purpose: Contains CSS overrides to make the portal seamlessly blend with the active WordPress theme.
 */

/* --- Full-Width Page Override --- */
/* This code targets your theme's specific content and sidebar areas (#primary and #secondary)
   ONLY when our portal is present. It makes the content area take up 100% width
   and hides the sidebar completely. */
body:has(.vpp-portal-wrap) #primary {
    width: 100%;
}
body:has(.vpp-portal-wrap) #secondary {
    display: none;
}