    :root {
      --primary: #8b5cf6; /* Purple */
      --accent: #ff8c69; /* Coral */
      --bg: #f8f8ff;
      --text: #2e2e2e;
      --transition: all 0.3s ease;
    }

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

    body {
      background-color: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* NAVBAR */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 999;
      background: transparent;
      transition: var(--transition);
      padding: 1rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header.scrolled {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .logo img {
      height: 40px;
      vertical-align: middle;
    }

    nav a {
      margin: 0 1rem;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }

    header.scrolled nav a {
      color: var(--text);
    }

    .signup-btn {
      background: #fff;
      color: var(--primary);
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    header.scrolled .signup-btn {
      background: var(--primary);
      color: #fff;
    }

    /* HERO SECTION */
    .hero {
      height: 100vh;
      background: linear-gradient(135deg, #8b5cf6, #a855f7, #d946ef);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 0 2rem;
    }

    .hero-content {
      max-width: 800px;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .hero button {
      background: #fff;
      color: var(--primary);
      border: none;
      padding: 0.8rem 1.8rem;
      border-radius: 40px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 600;
      transition: var(--transition);
    }

    .hero button:hover {
      background: var(--accent);
      color: #fff;
    }

    /* FEATURES SECTION */
    .features {
      padding: 6rem 3rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .feature {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: var(--transition);
    }

    .feature:hover {
      transform: translateY(-5px);
    }

    .feature i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .feature h3 {
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    /* COMMUNITY SECTION */
    .community {
      background: linear-gradient(120deg, #fff 0%, #f3e8ff 100%);
      padding: 6rem 3rem;
      text-align: center;
    }

    .community h2 {
      margin-bottom: 1rem;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }

    .community p {
      max-width: 700px;
      margin: 0 auto 3rem auto;
      color: #555;
    }

    .forum-preview {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .forum-card {
      background: #fff;
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      text-align: left;
    }

    .forum-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .forum-card h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }

    .forum-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* FOOTER */
    footer {
      background: #fff;
      padding: 4rem 6rem 2rem;
      color: #444;
      font-size: 0.95rem;
      border-top: 1px solid #eee;
    }

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

    .footer-links {
      display: grid;
      grid-template-columns: 250px repeat(auto-fit, minmax(180px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
      align-items: start;
    }

    .footer-logo img {
      width: 150px;
      margin-bottom: 1rem;
    }

    .footer-logo p {
      font-size: 0.9rem;
      color: #666;
      max-width: 200px;
    }

    .footer-column h4 {
      font-size: 1rem;
      margin-bottom: 1rem;
      color: #222;
      font-weight: 600;
    }

    .footer-column a {
      display: block;
      text-decoration: none;
      color: #555;
      margin: 0.3rem 0;
      transition: color 0.2s ease;
    }

    .footer-column a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #eee;
      padding-top: 2rem;
    }

    .socials {
      margin-bottom: 1rem;
    }

    .socials a {
      color: #777;
      margin: 0 0.4rem;
      font-size: 1.2rem;
      transition: color 0.2s ease;
    }

    .socials a:hover {
      color: var(--primary);
    }

    .footer-buttons {
      margin-top: 1.5rem;
    }

    .footer-buttons button {
      border: 1px solid #ccc;
      border-radius: 30px;
      background: #fff;
      color: #444;
      padding: 0.5rem 1rem;
      margin: 0.3rem;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .footer-buttons button:hover {
      background: #f7f7f7;
      border-color: var(--primary);
    }

    .disclaimer {
      font-size: 0.85rem;
      color: #777;
      margin: 1rem 0 0.3rem;
    }

    .copyright {
      font-size: 0.85rem;
      color: #777;
    }

    @media (max-width: 768px) {
      header {
        padding: 1rem 2rem;
      }
      .hero h1 {
        font-size: 2.3rem;
      }
      .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-logo img {
        margin: 0 auto 1rem;
      }
    }
    /* Register Page */
.register-page {
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.register-page .register-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 40px 20px;
}

.register-page .register-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(100, 0, 200, 0.15);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.register-page .register-box:hover {
  transform: translateY(-5px);
}

.register-page h1 {
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 10px;
}

.register-page .subtitle {
  color: #555;
  margin-bottom: 30px;
}

.register-page .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.register-page label {
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.register-page input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s;
}

.register-page input:focus {
  border-color: #9c27b0;
  outline: none;
}

.register-page .register-btn {
  background: linear-gradient(90deg, #a855f7, #7e22ce);
  color: white;
  font-weight: 600;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
}

.register-page .register-btn:hover {
  background: linear-gradient(90deg, #9333ea, #6d28d9);
}

.register-page .login-link {
  margin-top: 20px;
  color: #555;
}

.register-page .login-link a {
  color: #7e22ce;
  font-weight: 500;
  text-decoration: none;
}

.register-page .login-link a:hover {
  text-decoration: underline;
}
/* Login Page */
.login-page {
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.login-page .login-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 40px 20px;
}

.login-page .login-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(100, 0, 200, 0.15);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.login-page .login-box:hover {
  transform: translateY(-5px);
}

.login-page h1 {
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 10px;
}

.login-page .subtitle {
  color: #555;
  margin-bottom: 30px;
}

.login-page .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.login-page label {
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.login-page input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s;
}

.login-page input:focus {
  border-color: #9c27b0;
  outline: none;
}

.login-page .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 25px;
}

.login-page .form-options a {
  color: #7e22ce;
  text-decoration: none;
}

.login-page .form-options a:hover {
  text-decoration: underline;
}

.login-page .login-btn {
  background: linear-gradient(90deg, #a855f7, #7e22ce);
  color: white;
  font-weight: 600;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
}

.login-page .login-btn:hover {
  background: linear-gradient(90deg, #9333ea, #6d28d9);
}

.login-page .register-link {
  margin-top: 20px;
  color: #555;
}

.login-page .register-link a {
  color: #7e22ce;
  font-weight: 500;
  text-decoration: none;
}

.login-page .register-link a:hover {
  text-decoration: underline;
}
/* Forgot Password Page */
.forgot-page {
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.forgot-page .forgot-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 40px 20px;
}

.forgot-page .forgot-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(100, 0, 200, 0.15);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.forgot-page .forgot-box:hover {
  transform: translateY(-5px);
}

.forgot-page h1 {
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 10px;
}

.forgot-page .subtitle {
  color: #555;
  margin-bottom: 30px;
}

.forgot-page .form-group {
  text-align: left;
  margin-bottom: 25px;
}

.forgot-page label {
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.forgot-page input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s;
}

.forgot-page input:focus {
  border-color: #9c27b0;
  outline: none;
}

.forgot-page .forgot-btn {
  background: linear-gradient(90deg, #a855f7, #7e22ce);
  color: white;
  font-weight: 600;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
}

.forgot-page .forgot-btn:hover {
  background: linear-gradient(90deg, #9333ea, #6d28d9);
}

.forgot-page .back-login {
  margin-top: 20px;
}

.forgot-page .back-login a {
  color: #7e22ce;
  text-decoration: none;
  font-weight: 500;
}

.forgot-page .back-login a:hover {
  text-decoration: underline;
}
/* ------------------------------
   404 PAGE STYLES
------------------------------ */
.error-page .error-section {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #faf5ff, #fdf4ff);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page .error-content {
  max-width: 600px;
}

.error-page .error-content h1 {
  font-size: 3rem;
  margin: 20px 0 10px;
  color: #7e22ce;
}

.error-page .error-content p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.error-page .btn-primary {
  display: inline-block;
  background: #7e22ce;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.error-page .btn-primary:hover {
  background: #6b21a8;
}

.error-page .error-image {
  width: 100%;
  max-width: 450px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(126, 34, 206, 0.15);
}
/* ===============================
   ABOUT PAGE
=============================== */
.about-page .about-hero {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  text-align: center;
  padding: 160px 20px 100px;
}

.about-page .about-hero-content {
  max-width: 800px;
  margin: auto;
}

.about-page .about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-page .about-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Mission Section */
.about-page .mission-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 100px 20px;
  gap: 60px;
  background: #faf7ff;
}

.about-page .mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  align-items: center;
}

.about-page .mission-text {
  flex: 1 1 400px;
}

.about-page .mission-image img {
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(126, 34, 206, 0.15);
}

/* Values Section */
.about-page .values-section {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
}

.about-page .values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.about-page .value-card {
  background: #f3e8ff;
  border-radius: 20px;
  padding: 40px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.about-page .value-card:hover {
  transform: translateY(-5px);
}

.about-page .value-card i {
  font-size: 2rem;
  color: #7e22ce;
  margin-bottom: 15px;
}

/* Team Section */
.about-page .team-section {
  background: #faf7ff;
  text-align: center;
  padding: 100px 20px;
}

.about-page .team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.about-page .team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  padding: 20px;
  width: 220px;
  transition: 0.3s;
}

.about-page .team-member:hover {
  transform: translateY(-5px);
}

.about-page .team-member img {
  border-radius: 50%;
  margin-bottom: 15px;
  width: 120px;
  height: 120px;
}

.about-page .team-member h4 {
  margin: 0;
  color: #7e22ce;
}
/* === CAREERS PAGE === */
.careers-page {
  font-family: 'DM Sans', sans-serif;
  color: #222;
}

.careers-hero {
  background: linear-gradient(135deg, #5f5ff7, #00b3ff);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.careers-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.careers-hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 30px;
}

.careers-hero button {
  background: #fff;
  color: #333;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.careers-hero button:hover {
  background: #f2f2f2;
}

/* Values */
.careers-values {
  text-align: center;
  padding: 80px 20px;
  background: #fafafa;
}
.careers-values h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.value-card i {
  font-size: 2rem;
  color: #4c6ef5;
  margin-bottom: 10px;
}

/* Openings */
.careers-openings {
  text-align: center;
  padding: 80px 20px;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.job-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}
.job-card h3 {
  margin-top: 0;
}
.apply-btn {
  margin-top: 15px;
  background: #4c6ef5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.apply-btn:hover {
  background: #3b5bdb;
}
.no-role {
  margin-top: 40px;
  font-size: 1rem;
}
.no-role a {
  color: #4c6ef5;
  text-decoration: none;
}

/* Culture */
.careers-culture {
  background: #fafafa;
  text-align: center;
  padding: 80px 20px;
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.culture-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.culture-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.culture-card h4 {
  margin: 15px 0 5px;
}
.culture-card p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #555;
}
/* === CAREER DETAIL PAGE === */
.career-detail {
  font-family: 'DM Sans', sans-serif;
  color: #222;
  padding-bottom: 100px;
}

/* Header */
.career-detail .detail-header {
  background: linear-gradient(135deg, #4c6ef5, #00b3ff);
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
}
.career-detail .detail-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.career-detail .detail-header .tag {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 15px;
  margin: 0 5px;
  font-size: 0.9rem;
}

/* Layout */
.career-detail .detail-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Description */
.career-detail .description {
  flex: 2 1 600px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.career-detail .description h2 {
  margin-top: 40px;
  font-size: 1.4rem;
  color: #333;
}
.career-detail .description p,
.career-detail .description li {
  color: #555;
  line-height: 1.6;
}
.career-detail .description ul {
  margin-left: 20px;
  margin-top: 10px;
}

/* Apply Box */
.career-detail .apply-box {
  flex: 1 1 350px;
  background: #f9fafc;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  height: fit-content;
}
.career-detail .apply-box h3 {
  margin-bottom: 20px;
}
.career-detail .apply-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-detail .apply-box input,
.career-detail .apply-box textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-family: inherit;
}
.career-detail .apply-box button {
  margin-top: 10px;
  background: #4c6ef5;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.career-detail .apply-box button:hover {
  background: #3b5bdb;
}
.career-detail .apply-box .back-link {
  margin-top: 20px;
  text-align: center;
}
.career-detail .apply-box .back-link a {
  text-decoration: none;
  color: #4c6ef5;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .career-detail .detail-body {
    flex-direction: column;
    padding: 40px 15px;
  }
}
.notes-page {
  background: #0a0a0a;
  color: #fff;
  padding-bottom: 5rem;
  font-family: 'DM Sans', sans-serif;
}

/* Hero Section */
.notes-hero {
  background: linear-gradient(135deg, #121212, #0d0d0d);
  text-align: center;
  padding: 6rem 2rem 3rem;
  border-bottom: 1px solid #1e1e1e;
}

.notes-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.notes-hero-content p {
  color: #bbb;
  margin-bottom: 2rem;
}

.notes-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.notes-search input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  background: #111;
  color: #fff;
  outline: none;
}

.notes-search input:focus {
  border-color: #00b8ff;
  box-shadow: 0 0 10px rgba(0,184,255,0.3);
}

.notes-search button {
  padding: 0.9rem 1.1rem;
  border: none;
  border-radius: 8px;
  background: #00b8ff;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.notes-search button:hover {
  background: #00a4e0;
}

.new-note-btn {
  background: #00b8ff;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background 0.3s;
}

.new-note-btn:hover {
  background: #009ed8;
}

/* Notes Grid */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.note-card {
  background: #111;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #1d1d1d;
  transition: transform 0.25s, box-shadow 0.25s;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0,184,255,0.15);
}

.note-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00b8ff;
}

.note-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.note-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaa;
  font-size: 0.85rem;
}

.note-meta button {
  background: #00b8ff;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}

.note-meta button:hover {
  background: #009ed8;
}
