<style>
/* Sticky elements */
.rightbar {
  position: sticky;
  top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  border-bottom: 1px solid var(--moonlight-silver);
  font-size: 1.25rem;

  
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid var(--moonlight-silver);
  font-size: 0.95rem;
  z-index: 998;
  padding: 0.75rem 1rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

/* Main containers */
.feed, .sidebar, .rightbar {
  background-color: #ffffff !important;
  color: #000 !important;
  border: 1px solid var(--moonlight-silver);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

/* Main containers */
.coverphoto {
  background-color: #ffffff !important;
  color: #000 !important;
  border: 1px solid var(--moonlight-silver);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}


.feed:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Links */
.feed a, .sidebar a, .rightbar a, .nav-link {
  color: var(--nebula-blue);
}

.feed a:hover, sidebar a:hover, .rightbar a:hover, .site-header a:hover, .site-footer a:hover, .nav-link:hover {
  color: var(--starlight-pink);
}

/* Feed header */
.feed-header {
  background-color: var(--nebula-blue);
  padding: 0.5rem 1rem;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
}

/* Body */
body {
  padding-bottom: 70px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  line-height: 1.6;
 background: url('/soltriya-back-3.jpg') no-repeat center center fixed;
  
  background-size: cover;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Misc elements */
.list-group-item {
  background-color: transparent;
  border: none;
  padding-left: 0;
}

.toggle-switch {
  position: absolute;
  top: 12px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.form-check-input:checked {
  background-color: var(--starlight-pink);
  border-color: var(--starlight-pink);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000;
  border: 1px solid var(--moonlight-silver);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  max-width: 400px;
  text-align: center;
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar, .rightbar {
    display: none;
  }
}
</style>
