

		
		
		#nav_public, #nav_user_dropdown{display: none;}
		#nav_public.activated, #nav_user_dropdown.activated{display: block;}
		
		/* 1. The Full-Screen Wrapper */
		.letterbox-overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			display: flex;
			flex-direction: column;
			pointer-events: none; /* Allows interaction only on children */

			transform: scale(0.95) translateY(10px);
			pointer-events: none;
		}

		/* 2. The Translucent "Letterboxes" */
		.letterbox-bar {
			flex: 0 0 25%;
			background-color: rgba(0, 0, 0, 0.85);
			cursor: pointer;
			pointer-events: auto; 
			transition: background-color 0.3s ease;
		}

		.letterbox-bar:hover {
			background-color: rgba(0, 0, 0, 0.95);
		}

		/* 3. The Central Content Area */
		.letterbox-content {
			flex: 1; 
			background-color: #fff;
			pointer-events: auto;
			display: flex;
			justify-content: center;
			align-items: center;
			overflow: auto;
		}
		
		@media screen and (max-width: 480px) {
			.letterbox-bar {
				flex: 0 0 12%;
			}
			
			.letterbox-content {
				font-size: 0.6em;
			}
			
			.facebutton{height: 64px; width: 64px;}
		}
		
		.letterbox-overlay.activated{
			transform: scale(1) translateY(0);
			pointer-events: auto;
		}
		
    .overlay-header-bar {
        position: sticky;
        top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        border-bottom: 2px solid #222;
        padding: 10px 20px;
        font-family: 'Helvetica', sans-serif;
        letter-spacing: 1px;
        z-index: 10;
    }

    .reading-mode-label {
        font-size: 0.75rem;
        font-weight: bold;
        color: #888;
        text-transform: uppercase;
    }

    .close-overlay-btn {
        background: none;
        border: 1px solid #222;
		background: #ff2222;
		color: #fff;
        padding: 5px 15px;
        font-size: 0.8rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: end;
        gap: 8px;
    }

    .close-overlay-btn span {
        font-size: 1.2rem;
        line-height: 1;
    }

    .close-overlay-btn:hover {
        background: #222;
        color: #fff;
    }
	
	#fa_body{
		height: 100vh;
		width: 100vw;
		background: #f2f2f2;
	}
	
	#fa_content{
		overflow-y: auto;    /* Allows vertical scrolling */
		max-height: 90vh;    /* Limits height so scrolling is triggered */
		-webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
	}
	
		.news-index {
			width: 100%;
			border-collapse: collapse;
			font-family: 'Helvetica', sans-serif;
			margin-top: 20px;
		}
		.news-index th {
			text-align: left;
			border-bottom: 2px solid #222;
			padding: 10px;
			text-transform: uppercase;
			font-size: 0.8rem;
		}
		.news-index td {
			padding: 15px 10px;
			border-bottom: 1px solid #eee;
		}
		
		/* Title Styling */
		.article-link {
			text-decoration: none;
			color: #0056b3;
			font-weight: bold;
			font-size: 1.1rem;
		}
		.article-link:hover { text-decoration: underline; }

		/* "New" Highlight Logic */
		.article-link.is-new::after {
			content: "NEW";
			font-size: 0.6rem;
			background: #d32f2f;
			color: #fff;
			padding: 2px 5px;
			margin-left: 10px;
			border-radius: 2px;
			vertical-align: middle;
		}

		/* Importance Color Coding */
		.importance-critical { background-color: #fff5f5; }
		.tag { font-size: 0.7rem; font-weight: bold; text-transform: uppercase; }
		.importance-critical .tag { color: #d32f2f; }
		.importance-high .tag { color: #f57c00; }
		

    .input-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
      flex: 1;
      min-width: 150px;
    }

    .input-field label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #4b5563;
    }

    .input-field select, .input-field input {
      padding: 8px 12px;
      border: 1px solid var(--border-color);
      border-radius: 6px;
      font-size: 0.9rem;
    }

    .btn-primary { background: var(--bubble-blue); color: white; }
    .btn-primary:hover { background: #2563eb; }
    
    .preset-container {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      border-top: 1px dashed var(--border-color);
      padding-top: 15px;
    }

    .btn-secondary { background: #9ca3af; color: white; font-size: 0.8rem; padding: 6px 12px; }
    .btn-secondary:hover { background: #4b5563; }

    /* --- FORM COMPONENT STYLES --- */
    .field-title {
      text-align: left;
      margin-bottom: 12px;
      color: var(--text-main);
      font-size: 1.25rem;
    }
	

    .collapsible-checkboxes {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      background: var(--card-bg);
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
	
	.collapsible-checkboxes[open]{

	}

    .collapsible-checkboxes summary {
      padding: 16px 20px;
      font-weight: 600;
      color: #374151;
      cursor: pointer;
      background-color: var(--card-bg);
      user-select: none;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.2s;
	  height: 1.2em;
    }

    .collapsible-checkboxes summary::after {
      content: "▼";
      font-size: 0.8rem;
      color: #6b7280;
      transition: transform 0.2s ease;
    }

    .collapsible-checkboxes[open] summary::after {
      transform: rotate(180deg);
    }

    .collapsible-checkboxes summary:hover {
      background-color: #f9fafb;
    }


.subfont {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.7em;
  color: #777;
  letter-spacing: -0.2px;
}

.trades {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.6em;
  font-weight: 600;
  color: #555;

}

.trades > span {
	margin-right: 0.5ch;
}


/* ==========================================================================
   ATOMIC LAYOUT & UTILITY CLASSES SHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. AUTOFILL & CONTAINER FLEX/GRID LAYOUTS
   -------------------------------------------------------------------------- */

/* Default Autofill Grid (Defaults to 3 columns via CSS Variable) */
.gridAutofill {
  --cols: 3;
  --gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols)), 1fr));
  gap: var(--gap);
}

/* Directional Fill: Top-Left -> Right, then Down (Row Major) */
.fillAcross {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

/* Directional Fill: Top-Left -> Down, then Right (Column Major) */
.fillDown {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, minmax(max-content, 1fr));
  justify-content: flex-start;
  align-content: flex-start;
}

/* Dynamic Column Limits via Attribute (Overrides --cols) */
[data-rowlimit="1"] { --cols: 1; }
[data-rowlimit="2"] { --cols: 2; }
[data-rowlimit="3"] { --cols: 3; }
[data-rowlimit="4"] { --cols: 4; }
[data-rowlimit="5"] { --cols: 5; }
[data-rowlimit="6"] { --cols: 6; }
[data-rowlimit="7"] { --cols: 7; }
[data-rowlimit="8"] { --cols: 8; }


/* --------------------------------------------------------------------------
   2. CHILD ORIENTATION & ALIGNMENT
   -------------------------------------------------------------------------- */

/* Centered & Evenly Spaced Children */
.childrenSpaced {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

/* Alignment Variations */
.childrenSpaced.lefty {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.childrenSpaced.righty {
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}


/* --------------------------------------------------------------------------
   3. POSITIONING & VIEWPORT SIZING
   -------------------------------------------------------------------------- */

/* Centered in Parent Container */
.centerAbsolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centerSelf {
  margin: auto;
  align-self: center;
  justify-self: center;
}

/* Full Viewport Sizing */
.viewportFull {
  min-height: 100dvh;
  width: 100vw;
  box-sizing: border-box;
}

/* Sticky Top Element */
.stickySelf {
  position: sticky;
  top: 0;
  z-index: 100;
}


/* --------------------------------------------------------------------------
   4. FLEX CHILD SIZING & BEHAVIOR CONTROLS
   -------------------------------------------------------------------------- */

/* Prevents the element from shrinking (retains explicit width/height) */
.noShrink {
  flex-shrink: 0;
}

/* Prevents the element from growing beyond its baseline content/width */
.noGrow {
  flex-grow: 0;
}

/* Expands horizontally to consume all remaining space in a row flex container */
.hogHorizontal {
  flex-grow: 1;
  width: 100%;
}

/* Expands vertically to consume all remaining space in a column flex container */
.HogVertical {
  flex-grow: 1;
  height: 100%;
}

/* Insulates element alignment from sibling alignment or stretch overrides */
.NoDisplace {
  align-self: auto;
  flex-shrink: 0;
}



#pgs_tools_view {
    /* Scoped Design Tokens */
    --pgs-bg: #f8fafc;
    --pgs-card-bg: #ffffff;
    --pgs-text-primary: #0f172a;
    --pgs-text-muted: #64748b;
    --pgs-primary: #3b82f6;
    --pgs-primary-hover: #2563eb;
    --pgs-border: #e2e8f0;
    --pgs-radius: 16px;
    --pgs-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --pgs-shadow-hover: 0 12px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--pgs-text-primary);
    
    /* Center alignment within parent */
    margin: 0 auto;
    padding: 2rem 1.5rem;
    box-sizing: border-box;

    /* Responsive scaling: 100% width up to 1080p (1920px), 80vw above 1080p */
    width: 100%;
  }

  /* > 1080p breakpoint trigger (1920px width) */
  @media (min-width: 1921px) {
    #pgs_tools_view {
      width: 80vw;
      max-width: none;
    }
  }

  /* Header Section */
  #pgs_tools_view .pgs-header {
    margin-bottom: 2rem;
    text-align: left;
  }

  #pgs_tools_view .pgs-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 0.5rem 0;
    color: var(--pgs-text-primary);
    line-height: 1.2;
  }

  #pgs_tools_view .pgs-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.5;
    color: var(--pgs-text-muted);
    margin: 0;
    max-width: 65ch;
  }

  /* Tileset Grid */
  #pgs_tools_view .pgs-tiles-grid {
    display: grid;
    /* Strict 2-column layout for high and medium resolutions */
    grid-template-columns: repeat(2, minmax(0, 600px));
    gap: 1.5rem;
    justify-content: center;
  }

  /* Low Resolution / Small Mobile Screens Adaptation */
  @media (max-width: 640px) {
    #pgs_tools_view {
      padding: 1rem 0.75rem;
    }

    #pgs_tools_view .pgs-tiles-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Card Links */
  #pgs_tools_view .pgs-tile-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: var(--pgs-card-bg);
    border: 1px solid var(--pgs-border);
    border-radius: var(--pgs-radius);
    text-decoration: none;
    box-shadow: var(--pgs-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    width: 100%;
	
  }

  #pgs_tools_view .pgs-tile-card:hover,
  #pgs_tools_view .pgs-tile-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--pgs-shadow-hover);
    border-color: rgba(59, 130, 246, 0.4);
    outline: none;
  }

  #pgs_tools_view .pgs-tile-content {
    margin-bottom: 1.25rem;
  }

  #pgs_tools_view .pgs-tile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pgs-text-primary);
    margin: 0 0 0.5rem 0;
  }

  #pgs_tools_view .pgs-tile-card:hover .pgs-tile-title {
    color: var(--pgs-primary);
  }

  #pgs_tools_view .pgs-tile-desc {
    font-size: 0.875rem;
    color: var(--pgs-text-muted);
    margin: 0;
    line-height: 1.5;
  }

  /* Action Indicator */
  #pgs_tools_view .pgs-tile-footer {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pgs-primary);
  }

  #pgs_tools_view .pgs-tile-icon {
    width: 16px;
    height: 16px;
    margin-left: 0.35rem;
    transition: transform 0.2s ease;
  }

  #pgs_tools_view .pgs-tile-card:hover .pgs-tile-icon {
    transform: translateX(4px);
  }
  
  
  #pgs_news_view{
	  max-width: 80ch;
	  text-align: center;
  }
  .sub_nav {
    display: flex;
    overflow-x: auto;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 20px;
    margin-bottom: 20px;
}

.sub_nav_list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub_nav_list li a {
    display: block;
    padding: 12px 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sub_nav_list li a:hover,
.sub_nav_list li a.active {
    color: #2563eb;
    border-color: #2563eb;
}

/* Container & Theme Variables */
.contact-form-section {
  /* Brand Blue Palette */
  --primary-color: #0284c7;       /* Professional Blue */
  --primary-hover: #0369a1;       /* Deep Blue Hover */
  --focus-ring: #bae6fd;          /* Soft Sky Blue Glow */
  
  /* Text & Surfaces */
  --text-main: #0f172a;          /* Slate Dark */
  --text-muted: #475569;        /* Medium Slate */
  --bg-card: #ffffff;           /* Clean White Card */
  --bg-input: #f8fafc;          /* Off-White Surface */
  --border-color: #cbd5e1;       /* Soft Gray Border */
  --border-focus: #0284c7;       /* Blue Active Border */
  --radius: 6px;

  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  box-sizing: border-box;
  background-color: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  text-align: left;
}

.contact-form-section h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

.contact-form-section p {
  margin: 0 0 1.75rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Form Structure */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

/* Labels */
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
}

/* Inputs & Textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Hover & Focus States */
.form-group input:hover,
.form-group textarea:hover {
  border-color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* Placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  margin-top: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.submit-btn:hover {
  background-color: var(--primary-hover);
}

.submit-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* Container & Theme Variables */
.feedback-form-section {
  /* Matching Brand Blue Palette */
  --primary-color: #0284c7;       /* Professional Blue */
  --primary-hover: #0369a1;       /* Deep Blue Hover */
  --focus-ring: #bae6fd;          /* Soft Sky Blue Glow */
  --star-active: #0284c7;         /* Matching Blue Star Highlight */
  --star-idle: #cbd5e1;           /* Muted Gray for Unfilled Stars */
  
  /* Text & Surfaces */
  --text-main: #0f172a;          /* Slate Dark */
  --text-muted: #475569;        /* Medium Slate */
  --bg-card: #ffffff;           /* Clean White Card */
  --bg-input: #f8fafc;          /* Off-White Surface */
  --border-color: #cbd5e1;       /* Soft Gray Border */
  --border-focus: #0284c7;       /* Blue Active Border */
  --radius: 6px;

  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  box-sizing: border-box;
  background-color: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  text-align: left;
}

.feedback-form-section h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

.feedback-form-section p {
  margin: 0 0 1.75rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Form Structure */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Core Store Card Container */
.card_lst.card_str {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

/* Minimal/Collapsed View (Hidden by default or toggled via parent classes) */
.card_str .card_lst_min {
  display: none;
}

/* Header & Title Bar */
.card_str .card_lst_title_bar {
  padding: 8px 12px;
  color: #fff;
  background: var(--xgrp1, #00BFFF);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

/* Content Layout & Media */
.card_str .card_lst_contents {
  display: flex;
  gap: 8px;
  padding: 8px;
}

.card_str .card_lst_imagebox {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.card_str .card_lst_imagebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Tags & Badges */
.card_str .card_lst_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.card_str .card_lst_tags span {
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 4px;
  background: #f3f4f6;
  border: 1px solid #ccc;
}

.card_str .card_lst_tags span.colcat {
  background: var(--xgrp1, #00BFFF);
  color: #fff;
  border: none;
}

/* Counts & System Badges */
.card_str .card_lst_price {
  display: flex;
  justify-content: space-between;
  padding: 4px 12px;
  align-items: center;
}

/* Store Description & Metadata */
.card_str .card_lst_desc {
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #444;
}

.card_str .card_lst_desc p {
  margin: 4px 0;
}

.card_str .str_shortdesc {
  color: #111;
}

.card_str .str_longdesc {
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Payment Badges Bar */
.card_str .str_payments_bar {
  padding: 4px 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.card_str .pay_flag {
  font-size: 0.7rem;
  font-weight: bold;
  background: #e0f2fe;
  color: #0369a1;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Card Footer / Actions */
.card_str .card_lst_seller {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fafafa;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.card_str .act_button {
  background: var(--xacttake, #1c82e0);
  color: #fff;
  padding: 4px 12px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
}

.card_str .subfont {
  font-size: 0.75rem;
  color: #666;
}
