/**
 * Empty Frontend CSS
 * Hides all frontend content while keeping page structure intact
 */

body {
  background: #fff;
}

.layout-container,
.page-wrapper,
.main-content,
.content,
.region,
article,
.node,
.view {
  display: none !important;
}

/* Show only basic page structure if needed */
html,
body,
head {
  display: block;
}

/* Optionally show a message */
body::before {
  content: "API-only CMS - Frontend disabled";
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 9999;
}

