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

.section-title{
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #939492;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (max-width: 480px) {
  html {
    font-size: 90%;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  color: #111;
  overflow-x: hidden;
  padding-top: 0px;
}





/* Navbar */
.navbar {
  width: 100%;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 900;
}

.navbar .logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #51ad13;
}
.navbar .logo span {
  color: #51ad13;
}
.navbar #theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 550;
}

.navbar .logo span {
  color: #51ad13;
}

.navbar .logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #51ad13;
}

.nav-links{
  display: flex;
  list-style: none;
  gap: 40px;
  justify-content: center;
}

.nav-links li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
}

.nav-links li a:hover {
  color: #51ad13;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section - Mobile First */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  min-height: auto;
  text-align: center;
}

.hero-left {
  width: 100%;
  max-width: 600px;
  margin-bottom: 30px;
  z-index: 1;
}



.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.3;
}

.hero-left h1 span {
  color: #51ad13;
  font-size: 2.5rem;
  font-weight: 600;
}

.hero-left span.profession-container {
  font-size: 1.5rem;
  color: gray;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Animation effect for profession-container */
.profession-container {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.profession {
  display: inline-block;
  opacity: 0;
  position: absolute;
  animation: fadeIn 1s forwards;
  animation-delay: calc(var(--i) * 1s);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




/* Hero Right - Smaller Circle Image */
.hero-right {
  width: 100%;
  max-width: 220px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  margin: 20px auto 0;
}

.hero-right img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #51ad13;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Tablet Size */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 120px 40px 80px;
    text-align: left;
    min-height: 100vh;
  }

  .hero-left {
    margin-bottom: 0;
    padding-right: 60px;
    flex: 1;
  }

  .hero-left h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .buttons {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .hero-right {
    max-width: 280px;
    flex: 0 0 auto;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .nav-links.active{
    background: white;
  }
  .nav-links #theme-toggle {
    position: static;
    margin-top: 15px;
    margin-bottom: 10px;
    right: auto;
    top: auto;
    box-shadow: none;
    width: 40px;
    height: 40px;
    z-index: 1;
  }
}

/* Desktop Size */
@media (min-width: 1024px) {
  .hero {
    padding: 120px 10% 80px;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }

  .hero-right {
    max-width: 350px;
  }
}
/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #51ad13;
  color: #fff;
}

.btn.outline {
  border: 2px solid #51ad13;
  color: #51ad13;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* About Section */
.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 2/3;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  width: 100%;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.about-details p {
  margin: 6px 0;
}

.interests {
  margin-top: 15px;
}

.interests span {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  background: #e0e0e0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
}

@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .about-img img {
    max-width: 400px;
  }
  
  .about-content h2 {
    font-size: 2.2rem;
  }
}

/* Skills Section */
.skills-section {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
  scroll-margin-top: 80px;
}

.skills-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.skill-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 180px;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.skill-icon {
  width: 100%;
  max-width: 60px;
  height: auto;
  margin: 0 auto 10px;
}

.skill-card h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.level-label {
  font-size: 14px;
  font-weight: 600;
  color: #777;
}

@media (min-width: 768px) {
  .skills-section h2 {
    font-size: 2.5rem;
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

/* Projects Section */
.projects-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.projects-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.project-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  transition: opacity 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}

.project-card:hover .project-info {
  opacity: 1;
}

.project-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-info a {
  padding: 6px 14px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.project-info a:hover {
  background: #000;
  color: #fff;
}

.project-title{
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  padding: 10px 35px;
  color: #424242;
  margin-top: 10px;
}
.project-description {
  font-size: 14px;
  color: #555;
  padding: 0 35px;
  margin-top: 10px;
  text-align: left;
}
.project-card-container {
  background: #dbdbdb;
  border-radius: 15px;
  /* padding: 25px 15px; */
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  /* max-width: 180px; */
}

@media (min-width: 768px) {
  .projects-section h2 {
    font-size: 2.5rem;
  }
}


/* Work Experience Section */
.experience-section {
  padding: 60px 20px;
  background-color: #f9fbfc;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #888;
  margin-bottom: 40px;
}

.experience-container {
  max-width: 900px;
  margin: auto;
}

.experience-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  text-align: left;
}

.experience-left {
  flex-shrink: 0;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  background-color: #fff;
}

.experience-marker.active {
  border-color: #51ad13;
  background-color: white;
}

.experience-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.experience-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.experience-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin: 5px 0;
}

.experience-content .date {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.experience-content ul {
  padding-left: 18px;
}

.experience-content ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  list-style: disc;
}

/* Responsive */
@media (max-width: 768px) {
  .experience-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-left {
    padding: 0 0 10px;
  }
}


/* education section */
.education-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.all-education-link {
  color: #51ad13;
  font-weight: 500;
  text-decoration: none;
}

.education-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: 0.3s;
}

.education-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.edu-left {
  display: flex;
  align-items: flex-start;
}

.edu-icon {
  background-color: whitesmoke;
  color: #51ad13;
  padding: 12px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
}

.edu-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.edu-info p {
  margin: 4px 0;
  color: #555;
  font-size: 14px;
}

.location {
  font-size: 13px;
  color: #888;
}


.edu-date {
  font-size: 13px;
  color: #555;
  background: #f3f4f6;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .education-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .edu-date {
    margin-top: 10px;
  }
}



/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.contact-logo{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #51ad13;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.contact-section .container {
  max-width: 600px;
  margin: auto;
}

.contact-form {
  margin-top: 30px;
  padding: 0 10px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  padding: 12px 24px;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  background: #333;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .contact-section h2 {
    font-size: 2.5rem;
  }
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer p {
  margin: 10px 0;
  line-height: 1.6;
}

.social-icons {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #1da1f2;
  transform: translateY(-3px);
}

.footer .copyright {
  margin-top: 15px;
  font-size: 14px;
  color: #bbb;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #333;
  transform: translateY(-3px);
}

/* Responsive Navbar & Layout */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-icon {
    display: block;
  }
  
  #theme-toggle {
    top: 15px;
    right: 15px;
  }
}

/* Dark Mode Styles (unchanged from original) */
/* ... [rest of your dark mode styles remain the same] ... */
/* Dark Mode */
body.dark-mode {
  background: #1e1e1e;
  color: #e0e0e0;
}
body.dark-mode .navbar {
  background: #1e1e1e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
body.dark-mode .navbar .logo span {
  color: #51ad13;
}
body.dark-mode .nav-links li a {
  color: #e0e0e0;
}
body.dark-mode .nav-links.active {
  background-color: #1e1e1e; /* Dark background */
  color: #f1f5f9;            /* Light text color */
}

body.dark-mode .nav-links li a:hover {
  color: #a5a488;
}
body.dark-mode .hero {
  background: #1e1e1e;
  color: #e0e0e0;
}
body.dark-mode .hero-left h1 {
  color: #fff;
}
body.dark-mode .hero-left .tagline {
  color: #bbb;
}
body.dark-mode .btn.primary {
  background: #a5a488;
  color: #fff;
}
body.dark-mode .btn.outline {
  background: transparent;
  color: #a5a488;
  border: 1px solid #a5a488;
}
body.dark-mode .about-section {
  background: #1e1e1e;
}
body.dark-mode .about-content p {
  color: #bbb;
}
body.dark-mode .skills-section {
  background: #1e1e1e;
}
body.dark-mode .skill-card {
  background: #1e1e1e;
  border: 1px solid #333;
}
body.dark-mode .skill-card:hover {
box-shadow: 0 0 0 2px #51ad13;
}
body.dark-mode .skill-card h4 {
  color: #e0e0e0;
}
body.dark-mode .projects-section {
  background: #1e1e1e;
}
body.dark-mode .project-card {
  background: #2c2c2c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
body.dark-mode .project-info {
  color: #bbb;
}
body.dark-mode .project-info a {
  background: #fff;
  color: #000;
}
body.dark-mode .project-info a:hover {
  background: #000;
  color: #fff;
}
body.dark-mode .contact-section {
  background: #1e1e1e;
}
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
  background: #333;
  color: #fff;
}
body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
  background: #444;
  color: #fff;
}
body.dark-mode .contact-form .btn {
  background: #a5a488;
  color: #fff;
}
body.dark-mode .contact-form .btn:hover {
  background: #8c8c8c;
  color: #fff;
}
body.dark-mode .footer {
  background: #111;
  color: #bbb;
}
body.dark-mode .footer h3 {
  color: #fff;
}
body.dark-mode .footer p {
  color: #bbb;
}
body.dark-mode .social-icons a {
  color: #bbb;
}
body.dark-mode .social-icons a:hover {
  color: #1da1f2;
}
body.dark-mode .back-to-top {
  background: #333;
  color: #fff;
}
body.dark-mode .back-to-top:hover {
  background: #444;
}
/* Dark Mode Toggle */
#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, color 0.3s;
}
#theme-toggle img {
  width: 24px;
  height: 24px;
}
#theme-toggle:hover {
  background: #f0f0f0;
}
#theme-toggle.dark-mode {
  background: #333;
  color: #fff;
}
#theme-toggle.dark-mode img {
  filter: invert(1);
}
/* Dark Mode Toggle Icon */
.dark-mode-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: filter 0.3s;
}
.light-mode-icon {
  width: 24px;
  height: 24px;
  filter: invert(0);
  transition: filter 0.3s;
}
/* Dark Mode Toggle Button */
#theme-toggle.btn.primary {
  background: #a5a488;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}
#theme-toggle.btn.primary:hover {
  background: #8c8c8c;
  color: #fff;
}
#theme-toggle img.theme-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: filter 0.3s;
}
#theme-toggle.dark-mode img.theme-icon {
  filter: invert(0);
}
/* End of style.css */


/* 🌙 Dark Theme for Work Experience Section */
body.dark-mode .experience-section {
  background-color: #1e1e1e;
  color: #e5e7eb;
}

body.dark-mode .section-subtitle {
  color: #9ca3af;
}

body.dark-mode .experience-content {
  background-color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .experience-content h3 {
  color: #f9fafb;
}

body.dark-mode .experience-content h4 {
  color: #d1d5db;
}

body.dark-mode .experience-content .date {
  color: #9ca3af;
}

body.dark-mode .experience-content ul li {
  color: #d1d5db;
}

body.dark-mode .experience-marker {
  border-color: #4b5563;
  background-color: #333;
}

body.dark-mode .experience-marker.active {
  border-color: #51ad13; /* Tailwind's orange-500 */
  background-color: #333;
}

/* 🌙Dark theme for education section */
body.dark-mode .education-section {
  /* background-color: #1e1e1e; */
  color: #e0e0e0;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

body.dark-mode .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

body.dark-mode .section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

body.dark-mode .all-education-link {
  color: #a5a488;
  font-weight: 500;
  text-decoration: none;
}

body.dark-mode .education-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #1e1e1e;
  padding: 20px 25px;
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  box-shadow: 0 0 0 2px transparent;
}

body.dark-mode .education-card:hover {
  box-shadow: 0 0 0 2px #51ad13;
}

body.dark-mode .edu-left {
  display: flex;
  align-items: flex-start;
}

body.dark-mode .edu-icon {
  background-color: #333;
  color: #51ad13;
  padding: 12px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 18px;
}

body.dark-mode .edu-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

body.dark-mode .edu-info p {
  margin: 4px 0;
  color: #bbb;
  font-size: 14px;
}

body.dark-mode .location {
  font-size: 13px;
  color: #888;
}

body.dark-mode .location .score {
  margin-left: 10px;
}

body.dark-mode .edu-date {
  font-size: 13px;
  color: #e0e0e0;
  background: #333;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid #444;
}
