* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --body-color: #BBBDBC;
  --nav-color: #F2F0EF;
  --side-nav: #B3B3B3;
  --text-color: #111111;
  --search-bar: #f2f2f2;
  --search-text: #010718;

  --bg-color: #F2F0EF;
  --card-bg: #D4D4D4;
  --secondary-text: #555555;
  --accent: #ff0055;
  --overlay-bg: rgba(0, 0, 0, 0.85);
  --star-color: #ffc107;
  --button-bg: var(--accent);
  --button-hover: #e6004c;
}


.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full viewport height */
}
.content {
  flex: 1 0 auto; /* allow main content to grow and fill space */
}
.site-footer {
  flex-shrink: 0; /* prevent footer from shrinking */
}

body {
  height: 100vh;
  background-color: var(--body-color);
}

body.dark {
  --body-color: #18191A;
  --nav-color: #242526;
  --side-nav: #242526;
  --text-color: #ffffff;
  --secondary-text: #aaaaaa;
  --search-bar: #3a3b3c;
  --search-text: #e4e6eb;

  --bg-color: #111111;
  --card-bg: #1c1c1c;
  --overlay-bg: rgba(0, 0, 0, 0.9);
}

header{
margin-bottom: 70px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  background-color: var(--nav-color);
  z-index: 100;
}

nav .nav-bar {
  position: relative;
  height: 100%;
  max-width: 1300px;
  width: 100%;
  background-color: var(--nav-color);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

nav .nav-bar .sidebaropen {
  color: var(--text-color);
  font-size: 40px;
  padding: 5px;
  cursor: pointer;
  display: none;
}

nav .nav-bar .logo a {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;

}


.menu .logo-toggle {
  display: none;
}

.nav-bar .nav-links {
  display: flex;
  align-items: center;

}

.nav-bar .nav-links li {
  margin: 0 5px;
  list-style: none;
}

.nav-links li a {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(50%);
  height: 6px;
  width: 6px;
  background-color: var(--text-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;

}

.nav-links li:hover a::before {
  opacity: 1;
}

.nav-bar .darklight-search-box {
  display: flex;
  align-items: center;
}

.darklight-search-box .dark-light,
.darklight-search-box .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.dark-light ion-icon,
.searchToggle ion-icon {
  position: absolute;
  color: var(--text-color);
  font-size: 27px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-light ion-icon.sun {
  opacity: 0;
  pointer-events: none;
}

.dark-light.active ion-icon.sun {
  opacity: 1;
  pointer-events: auto;
}


.dark-light.active ion-icon.moon {
  opacity: 0;
  pointer-events: none;
}

.searchToggle ion-icon.cancel {
  opacity: 0;
  pointer-events: none;
}

.searchToggle.active ion-icon.cancel {
  opacity: 1;
  pointer-events: auto;
}

.searchToggle.active ion-icon.search {
  opacity: 0;
  pointer-events: none;
}

.search-box {
  position: relative;

}

.search-box .search-field {
  position: absolute;
  bottom: -85px;
  right: 5px;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  background-color: var(--nav-color);
  padding: 3px;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}



.searchToggle.active~.search-field {
  bottom: -74px;
  opacity: 1;
  pointer-events: auto;
}

.search-field::before {
  content: '';
  position: absolute;
  right: 14px;
  top: -4px;
  height: 12px;
  width: 12px;
  background-color: var(--nav-color);
  transform: rotate(-45deg);
  z-index: -1;
}



.search-field input {
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  color: var(--search-text);
  font-size: 20px;
  font-weight: 400;
  background-color: var(--body-color);
}

body.dark .search-field input {
  color: var(--text-color);
  font-size: 20px;
}

.search-field ion-icon {
  position: absolute;
  color: var(--text-color);
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

body.dark .search-field ion-icon {
  color: var(--text-color);
}




.search-field {
  position: absolute;
  bottom: -85px;
  right: 5px;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  background-color: var(--nav-color);
  padding: 3px;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.search-field form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.search-field input {
  flex: 1;
  height: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  color: var(--search-text);
  font-size: 20px;
  font-weight: 400;
  background-color: var(--body-color);
}

.search-field button {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.search-field button ion-icon {
  font-size: 22px;
  color: var(--text-color);
}


.container {
  margin-bottom: 50px;
}

.home-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #fff;
}

/* ==== CARD GRID ==== */
.card-grid {
  display: grid;
  gap: 20px;
  margin: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* ==== CARD CONTENT ==== */
.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 5px;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--secondary-text);
}

.genre {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ==== RATING SVG STARS ==== */
.rating {
  display: flex;
  gap: 4px;
  color: var(--star-color);
}

.rating .star {
  width: 18px;
  height: 18px;
}

/* ==== CARD OVERLAY ==== */
.card-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;

  /* Visibility */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;

  /* Frosted glass effect */
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 12px;
  overflow: hidden;
  color: #fff;
}



.card:hover .card-overlay {
  opacity: 1;
  pointer-events: auto;
}


.card-overlay h3 {
  font-size: 1.1rem;
  text-align: center;
}

.card-overlay .synopsis {
  font-size: 0.9rem;
  color: #ccc;
}

.card-overlay button {
  background-color: var(--button-bg);
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card-overlay button:hover {
  background-color: var(--button-hover);
}

@media (max-width: 790px) {

  nav .nav-bar .sidebaropen {
    display: block;
  }

  .menu {
    position: fixed;
    height: 100%;
    width: 320px;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: var(--side-nav);
    z-index: 100;
    transition: all 0.4s ease;
  }

  nav.active .menu {
    left: 0;

  }

  nav.active .nav-bar .navlogo a {
    opacity: 0;
    transition: all 0.3s ease;

  }

  .menu .logo-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .logo-toggle .sidebarclose {
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;

  }


  .nav-bar .nav-links {
    flex-direction: column;
    padding-top: 30px;
  }

  .nav-links li a {
    display: block;
    margin-top: 20px;
  }
}

.site-footer {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 30px 20px;
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--accent);
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body > .container {
  flex: 1;
}



.rating {
      font-size: 18px;
      font-weight: bold;
      color: #ffd700;
      margin-bottom: 10px;
    }




/* ==== crousel ==== */

/* Carousel container (keep your existing container rules) */
.carousel { position: relative; width: 100%; max-width: 1200px; aspect-ratio: 16/7; margin: 4px auto; overflow: hidden; border-radius: 14px; background: #111; }

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transform: translateX(100%);               /* default: off-screen to the right */
  transition: transform 2s cubic-bezier(.2,.8,.2,1), opacity 1s ease;
}

/* Incoming (visible) slide */
.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* Outgoing slide */
.slide.prev {
  opacity: 0;
  transform: translateX(-100%);              /* move left */
  z-index: 3;                                /* keep outgoing on top while it moves */
}

.details h2 {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .details p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.2;
  }

/* Make everything inside details behave like normal text */
.details, 
.details * {
  cursor: default;
}

/* Only the button should look clickable */
.btn-watch {
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}


/* Hover effect only on button */
.btn-watch:hover {
  background: #b20710;
  transform: scale(1.05);
}


.details .meta {
    font-size: 25px;
    margin-bottom: 8px;
    color: #bbb;
  }

  
/* Poster / details (your styles kept mostly same) */
.poster { flex: 0 0 40%; height: 100%; }
.poster img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px 0 0 14px; }

.details { flex: 0 0 60%; padding: 25px; background: linear-gradient(135deg,#1a1a1a,#0d0d0d); color:#fff; display:flex; flex-direction:column; justify-content:center; border-radius:0 14px 14px 0; }


.btn-watch { padding:10px 18px;margin-top: 15px; background:#e50914; border:none; border-radius:6px; color:#fff; cursor:pointer; }

/* Nav and dots (keep your existing styles) */
.nav { position: absolute; top:50%; transform: translateY(-50%); font-size:24px; color:#fff; background: transparent; padding:6px 10px; border-radius:50%; z-index:10; cursor:pointer; }
.nav.prev { left:15px } .nav.next { right:15px }

.dots { position:absolute; bottom:12px; left:50%; transform:translateX(-50%); display:flex; gap:6px }
.dots span { width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,0.4); cursor:pointer; display:inline-block; }
.dots span.active { background:#fff; }

/* Responsive tweaks unchanged */
@media (max-width:768px){ .poster{flex:0 0 45%} .details{flex:0 0 55%} }

/* ✅ Mobile adjustments but keep split layout */
@media (max-width: 600px) {
  .slide {
    flex-direction: row;       /* still side by side */
  }

  .poster {
    flex: 0 0 45%;             /* poster takes ~45% */
    height: auto;              /* scale with width */
  }
  .poster img {
    border-radius: 14px 0 0 14px;
    object-fit: cover;
  }

  .details {
    flex: 0 0 55%;             /* details take rest */
    padding: 10px;
    border-radius: 0 14px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .details h2 {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .details .meta {
    font-size: 10px;
    margin-bottom: 6px;
    color: #bbb;
  }

  .details p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: px;
    max-height: 48px;                /* prevents overflow */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;           /* 3 lines max */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: #ccc;
  }

  .btn-watch {
    font-size: 13px;
    padding: 8px 12px;
    align-self: flex-start;          /* keep left aligned */
  }
}



/* ------------------ search page ------------------ */
  

.search-results-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.search-results-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.post-card {
    background-color: var(--nav-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.post-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.post-info {
    padding: 10px 12px;
}

.post-info h3 {
    font-size: 18px;
    margin: 5px 0;
    color: var(--text-color);
}

.post-info h3 a {
    text-decoration: none;
    color: inherit;
}

.post-category {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    margin-bottom: 8px;
}

.post-desc {
    font-size: 14px;
    color: var(--text-color);
}

.no-results {
    font-size: 18px;
    color: #ccc;
    margin-top: 30px;
    text-align: center;
}




/* ------------------ Pagination ------------------ */


.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  padding: 8px 12px;
  background-color: var(--nav-color);
  color: var(--text-color);
  border-radius: 4px;
  text-decoration: none;
}

.pagination a:hover {
  background-color: var(--text-hover);
}

.pagination .current {
  font-weight: bold;
  background-color: var(--text-color);
  color: var(--body-color);
}

.pagination .disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .layout {
    display: flex;
    flex-direction: column;
  }

  .pagination {
    order: -1; /* moves above aside ONLY on mobile */
    margin-bottom: 15px;
  }

  #aside-container {
    order: 0; /* aside stays below pagination */
  }
}




/* ------------------ category home ------------------ */

/* ===== Category Section ===== */
.category-section {
  margin: 40px 0;
}

.category-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* Grid layout for categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

/* Each category card */
.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #1e1e1e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.category-card .name {
  font-weight: 600;
  font-size: 1rem;
}

.category-card .count {
  font-size: 0.8rem;
  color: #bbb;
}

/* Hover animation */
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}



/* ------------------ category postview ------------------ */


/* ===== Post Section ===== */
.posts-section,
.category-posts {
  margin: 50px 0;
}

.posts-section h2,
.category-posts h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* Post grid layout */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

/* Individual post card */
.post-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.post-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #eee;
  margin: 10px;
  text-align: center;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}


@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .post-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .post-card img {
    height: 180px;
  }
}


/* ------------------ Global Layout ------------------ */
.layout {
  display: grid;
  grid-template-columns: 3fr 1fr; /* main content + aside column */
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 10px;
}

/* Right column holding both asides */
.aside-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ✅ Mobile layout (stacked) */
@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr; /* single column */
    align-items: center;
  }
}

/* Sidebar wrapper */
.side-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 320px; /* keep a nice width */
}


/* ------------------ Top Dramas Aside ------------------ */
.aside {
  flex: 1;
  max-width: 100%;
}

.aside-box {
  background: #1c1c1c;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
}

.aside-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

/* Toggle buttons */
.toggle-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.toggle-buttons a {
  flex: 1;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: #2a2a2a;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.toggle-buttons a.active {
  background: #6a0dad;
}

/* Filter form */
.filter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.filter-form select {
  flex: 1;
  padding: 5px;
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
}

/* List */
.drama-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aside-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  border-bottom: 1px solid #333;
}

.aside-card img {
  width: 40px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
}

.aside-info {
  flex: 1;
  margin-left: 8px;
}

.aside-info h5 {
  font-size: 14px;
  margin: 0 0 4px;
}

.aside-info p {
  margin: 0;
  font-size: 12px;
  color: #bbb;
}

.aside-actions {
  margin-left: auto;
}

.view-btn {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  background: #6a0dad;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.view-btn:hover {
  background: #520a9e;
}

/* ------------------ Notifications Aside ------------------ */
/* Notifications Aside */
/* Notifications Aside */
.aside-notifications {
  background: #1e1e1e;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Dramas Aside */
.aside.bottom {
  background: #1c1c1c;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
}

/* 🚫 remove any fixed positioning */
.aside-notifications,
.aside.bottom {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0;
}


.aside-notifications:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.aside-notifications h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #f5f5f5;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.aside-notifications ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-notifications li {
  margin: 10px 0;
  border-radius: 8px;
  overflow: hidden;
}

.aside-notifications li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.aside-notifications li a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
  color: #ffffff;
}

.aside-notifications .time {
  font-size: 0.8rem;
  color: #aaa;
  margin-left: 12px;
}



