/* === Reset & Base Layout === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: auto; /* ✅ Allow full content scroll */
  overflow-x: hidden;
}

body {
  background-color: #eef2f5;
  font-family: 'Baloo Tamma 2', sans-serif;
  display: flex;
  justify-content: center;
}

.site-wrapper {
  width: 1200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  
}

/* === Main Content === */
.content,
.main-content {
  padding: 20px;
}


/* === Quill Editor === */
#quillEditor {
  height: 150px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
}

/* === Footer (NOT Sticky) === */
footer {
  position: static; /* ✅ Footer scrolls with page */
  background-color: #f1f1f1;
  text-align: center;
  font-size: 13px;
  padding: 10px;
  margin-top: 40px;
}

.footer a {
  color: #198754;
}

.footer a:hover {
  text-decoration: underline;
}

.object-fit-cover {
  object-fit: cover;
}

.hover-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
