/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #2c3e50;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f5f6fa;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Top Navigation */
.top-nav {
  /* background-color: #2c3e50; */
  background-color: #007acc;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(33, 33, 33, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

/* Container Layouts */
.container {
  margin-top: 4rem;
  padding: 2rem;
  min-height: 100vh;
}

.container-with-sidebars {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 300px;
  gap: 2rem;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Sidebar */
.sidebar {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 6rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-nav a {
  color: #2c3e50;
  text-decoration: none;
  padding: 0.2rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.sidebar-nav a:hover {
  background-color: #f5f6fa;
}

/* Main Content */
.main-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section video {
  max-width: 100%;
  height: auto;
  display: block;
}

.content-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.2;
}

.content-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1.5rem;
  color: #34495e;
  font-size: 1.1rem;
}

.content-section ul {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.prob-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
}

.prob-card {
  display: flex;
  justify-content: start;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  background-color: #fff5f5;
  border: 1px solid #f5c6cb;
}

.sol-card {
  display: flex;
  justify-content: end;
  gap: 0.75rem;
  border: 1px solid rgba(0, 123, 255, 0.5);
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  background-color: #f1f9ff;
  border: 1px solid #b3e5fc;
}

.prob-img {
  border-radius: 8px;
  width: 100px;
  height: 100px;
}
.sol-img {
  border-radius: 8px;
  width: 100px;
  height: 100px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
} */

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

.card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.25rem;
  color: #2c3e50;
}

.card p {
  padding: 0 1rem 1rem;
  color: #34495e;
  font-size: 0.95rem;
}

.card-btn-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 10px;
}
.btn-view-course {
  font-family: poppins;
  background: none;
  border: 1px solid grey;
  padding: 8px 25px;
  border-radius: 8px;
  font-size: large;
  font-weight: 400;
  color: grey;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-course:hover {
  background-color: lightgray;
  /* color: black; */
}

.btn-enroll-now {
  font-family: poppins;
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-enroll-now:hover {
  scale: 1.1;
  transition: all 0.3s ease, background-position 1ms;
}

.course-header {
}
.course-header-image {
}
.course-header-title {
}

/* Advertisement Sidebar */
.ad-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ad-box {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer !important;
}

.ad-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  cursor: pointer !important;
}

/* Footer */
.footer {
  /* background-color: #2c3e50; */
  background-color: #212121;
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #ecf0f1;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.course-header {
  display: flex;
  gap: 1rem;
}
.course-header-image {
  width: 33%;
}
.course-header-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.course-features {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 0;
}

.course-title {
  font-size: 3rem !important;
  text-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container-with-sidebars {
    grid-template-columns: 200px 1fr 250px;
  }
}

@media (max-width: 1024px) {
  .container-with-sidebars {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .ad-sidebar {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
  }
  .hero-image {
    display: none;
  }

  .sol-card {
    flex-direction: column;
  }
  .prob-card {
    flex-direction: column;
  }
  .prob-img {
    border-radius: 8px;
    width: 100%;
    height: auto;
  }
  .sol-img {
    border-radius: 8px;
    width: 100%;
    height: auto;
  }

  /* .course-header {
    display: flex;
    gap: 1rem;
  }
  .course-header-image {
    width: 33%;
  }
  .course-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .course-features {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 20px 0;
  } */

  .course-title {
    font-size: 2.5rem !important;
    text-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .main-content {
    padding: 1.5rem;
  }

  .nav-content {
    padding: 0.75rem 1rem;
  }

  .content-section h1 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .prob-row {
    flex-direction: column;
    gap: 1rem;
  }

  .course-header {
    display: flex;
    gap: 1rem;
  }
  .course-header-image {
    width: 100%;
  }
  .course-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .course-features {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 20px 0;
  }
  .course-title {
    font-size: 2.5rem !important;
    text-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .nav-right a:not(:last-child) {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .course-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .course-header-image {
    width: 100%;
  }
  .course-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .course-header-title {
  }
  .course-title {
    font-size: 2.5rem !important;
    text-wrap: wrap;
  }

  .course-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px 0;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0.5rem;
  }

  .main-content {
    padding: 1rem;
  }

  .card {
    min-width: 0;
    width: 100%;
  }

  .card img {
    height: 180px;
  }

  /* .course-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .course-header-image {
    width: 100%;
  }
  .course-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .course-header-title {
  }
  .course-title {
    font-size: 2.5rem !important;
    text-wrap: wrap;
  }

  .course-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px 0;
  } */
}

/* Style for the <pre> block */
pre {
  background-color: #2d2d2d; /* Dark gray background */
  color: #f8f8f2; /* Light text for contrast */
  border: 1px solid #444; /* Subtle border */
  border-radius: 5px; /* Rounded corners */
  padding: 15px; /* Inner padding */
  font-size: 18px; /* Font size for code */
  line-height: 1.5; /* Line height for readability */
  overflow-x: auto; /* Horizontal scroll for long code */
  margin: 10px 0; /* Space above and below the block */
  font-family: "Fira Code", "Consolas", "Courier New", Courier, monospace; /* Monospace font */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Style for the <code> block */
code {
  background-color: #2d2d2d; /* Matches <pre> background */
  color: #f8f8f2; /* Light text for contrast */
  font-family: "Courier New", Courier, monospace; /* Monospace font for code */
  padding: 2px 4px; /* Small padding for inline code */
  border-radius: 3px; /* Rounded corners */
  white-space: pre-wrap; /* Preserves spacing and wraps code */
  font-size: 90%; /* Slightly smaller font for inline code */
}

/* Optional syntax highlighting for code keywords */
pre code {
  color: #f8f8f2; /* Default light text */
}

pre code .keyword {
  color: #66d9ef; /* Blue for Python keywords */
}

pre code .function {
  color: #a6e22e; /* Green for functions */
}

pre code .string {
  color: #e6db74; /* Yellow for strings */
}

pre code .comment {
  color: #75715e; /* Gray for comments */
}

/* ----------------------------------------- */
/* pricing */
/* General Styling */
.pricing-section {
  /* font-family: "Roboto", sans-serif; */
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f3f4f6, #ffffff);
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 40px;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Pricing Card */
/* General Styling */
.pricing-section {
  /* font-family: "Roboto", sans-serif; */
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f3f4f6, #ffffff);
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 40px;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Pricing Card */

/* General Styling */
.pricing-section {
  /* font-family: "Roboto", sans-serif; */
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f3f4f6, #ffffff);
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 40px;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Pricing Card */

.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.featured {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  position: relative;
}

.featured .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffcd38;
  color: #2d3748;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 15px;
}

.featured .price,
.featured .subtext,
.featured .savings {
  color: #ffffff;
}

.card-header {
  margin-bottom: 20px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.subtext {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #4a5568;
}

.savings {
  font-size: 1rem;
  font-weight: bold;
  /* color: #38a169; */
  margin-bottom: 20px;
}

/* Button */
.select-button {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.select-button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-card {
    width: 90%;
  }
}

/* login page  */

/* .content-section h2 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.5rem;
} */

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

form input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  font-family: poppins;
}

form input:focus {
  border-color: #007bff;
}

form button {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: poppins;
}

form button:hover {
  background-color: #007bffcc;
}

.login-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form h1 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.login-form p {
  color: #7f8c8d;
  margin-bottom: 1rem;
}

.login-with-google {
  /* border: 1px solid red; */
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  padding-top: 30px;
}

.login-with-google-btn {
  width: 300px;
  transition: background-color 0.3s, box-shadow 0.3s;

  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);

  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 11px;

  &:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  &:active {
    background-color: #eeeeee;
  }

  &:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25),
      0 0 0 3px #c8dafc;
  }

  &:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
  }
}

.back-btn {
  background-color: lightgray;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  cursor: pointer;
  font-family: poppins;
  background-repeat: no-repeat;
  background-position: right 24px center;
}

/* payment page */

#checkmark {
  font-size: 100px; /* Increase size */
  color: green; /* Make it green */
  opacity: 0; /* Start hidden */
  transform: scale(0); /* Start small */
  animation: popIn 2s ease-out forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-section {
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  gap: 2rem;

  margin-bottom: 4rem;

  /* display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 2rem; */
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-image {
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.2rem 1rem;
  cursor: pointer;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  padding: 1rem 0;
}

/* popup modal */

.popup {
  display: none; /* Initially hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  width: 300px;
  z-index: 1000;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #0056b3;
}

/* loader */

.loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loader-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  width: 200px;
}

.loader-circle {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

.loader-content p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logout-btn {
  font-family: poppins;
  background-color: white;
  color: gray;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: medium;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  outline: none; /* Prevents highlighting */
}

.logout-btn:hover {
  background-color: gray; /* Adds hover effect */
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Adds hover effect */
}
