/**
 * SIMPLE FIXES ONLY
 * 1. Remove shortlist
 * 2. Make profile builder fullscreen
 */

/* ============================================
   1. REMOVE SHORTLIST - COMMENTED OUT TO RESTORE FUNCTIONALITY
   ============================================ */

/* Shortlist is now visible again - comment out to hide 
.sffc-shortlist-content,
.sffc-shortlist-floating,
.sffc-sortable,
.shortlist-toggle-btn,
.sffc-shortlist-header,
.sffc-shortlist-actions,
.sffc-shortlist-subtitle,
.sffc-shortlist-title {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
*/

/* ============================================
   2. PROFILE BUILDER FULLSCREEN
   ============================================ */

.sffc-profile-builder.fullscreen,
.sffc-profile-builder.fullscreen.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10000 !important;
    background: #FAF9F6 !important;
    overflow: auto !important;
}

/* Profile builder overlay - also fullscreen */
.sffc-profile-builder-overlay.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 9999 !important;
}