h3 {
  text-align: center;
}

/* Profile Image CSS */
.profile-header-img {
  width: 100px;
  height: 75px;
  margin: 0 0 -40px;
  max-width: 100%;
}
.profile-header-img img {
  max-width: 100%;
}
/* Profile Image End CSS */

/* Global Body Styling */
.body {
  background: #161b22;
  color: aliceblue;
}
/* Global Body End */

/* 404 Not Found Page CSS */
.not-found {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 200px;
  text-align: center;
}
/* 404 Not Found Page End CSS */

/* ============================
   Login Page CSS
============================ */
.login-container form {
  margin: 0 auto;
  width: 300px;
}
.login-container p {
  text-align: center;
}
.login-container .no-account {
  border: 1px solid #fff;
  border-radius: 12px;
}
/* Login Page End CSS */

/* ============================
   Signup Page CSS
============================ */
.signup-container form {
  margin: 0 auto;
  width: 300px;
}
.signup-container p {
  text-align: center;
}
.signup-container .no-account {
  border: 1px solid #fff;
  border-radius: 6px;
}
/* Signup Page End CSS */

/* ============================
   Home Page (Now Empty)
   (NOTE: Old To-Do App CSS removed)
============================ */

/* Home Page End CSS */

/* ============================
   Profile Page CSS
   (Add styling later as needed)
============================ */

/* Profile Page End CSS */

/* ============================
   Billing Page CSS (Placeholder)
============================ */

/* Billing Page End CSS */

/* ============================
   Support Page CSS (Placeholder)
============================ */

/* Support Page End CSS */

/* ============================
   Settings Page CSS (Future)
============================ */

/* Settings Page End CSS */

/* ------------------------------
   LuceDev Premium Navbar
--------------------------------*/
.lucedev-nav {
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navbar links */
.lucedev-link {
  color: #e5e5e5 !important;
  font-weight: 500;
  padding: 0.6rem 1rem !important;
  transition: 0.25s ease;
}

/* Hover effect */
.lucedev-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* Optional active highlighting */
.lucedev-link.active {
  background: rgba(0, 140, 255, 0.22);
  border-radius: 8px;
  color: #fff !important;
}
