/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Base Layout */
body {
  background-color: #fdf8ef;
  font-family: 'Georgia', serif;
  min-height: 100vh;
  width: 100%;
  overflow-y: auto;
  position: relative;
  /* Removed fixed centering for generic pages */
}

.ratna-logo {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1001; /* Above header */
}

.logo-icon {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Mandala Corners */
.bg-left,
.bg-right {
  position: fixed;
  width: 450px;
  z-index: 0;
  pointer-events: none;
}

.bg-left {
  display: none; /* Removed as requested */
}

.bg-right {
  bottom: 0;
  right: 0;
  transform: translate(40%, 40%);
}

/* Shared Container */
.container {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

/* Responsive Mandalas */
@media (max-width: 768px) {
  .bg-left,
  .bg-right {
    width: 300px;
  }
}

@media (max-width: 450px) {
  .bg-left,
  .bg-right {
    width: 250px;
  }
}
