body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff; /* High-contrast white for body text */
    margin: 0;
    font-size: 1rem; /* Base font size for readability */
    line-height: 1.6; /* Improved line spacing */
}

.container {
    max-width: 1200px;
    padding: 15px;
}

.logo {
    font-size: 1.8rem; /* Larger logo for prominence */
    font-weight: 600;
    color: #ff9e4a; /* Light orange for visibility */
}

header {
    background: linear-gradient(90deg, #1a1a1a, #333333);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

header nav a {
    margin: 5px;
    color: #ffffff; /* White for nav links */
    font-weight: 400;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #ff9e4a; /* Light orange on hover */
}

.hero {
    background: linear-gradient(90deg, #ff6200, #e55b00);
    padding: 60px 15px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem; /* Larger heading */
    font-weight: 600;
    color: #ffffff; /* White for contrast */
}

.hero p {
    font-size: 1.2rem; /* Slightly larger for readability */
    color: #f0f0f0; /* Light gray for secondary text */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

.about, .terms, .privacy, .contact {
    background: #1a1a1a;
    padding: 40px 15px;
}

.about h2, .terms h2, .privacy h2, .contact h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ff9e4a; /* Light orange for headings */
    text-align: center;
}

.about p, .terms p, .privacy p, .contact p {
    font-size: 1rem;
    color: #d9d9d9; /* Light gray for body text */
    max-width: 800px;
    margin: 0 auto;
}

.features .feature-card {
    background: #ff6200;
    color: #000000; /* Black text for contrast on orange */
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.features .feature-card:hover {
    transform: translateY(-10px);
}

.features .card-img-top {
    height: 150px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .features .card-img-top {
        height: 200px;
    }
}

.auth-section .auth-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.auth-section label {
    color: #ff9e4a; /* Light orange for form labels */
    font-weight: 600;
}

.auth-section .form-control {
    background-color: #333333;
    color: #ffffff; /* White text in inputs */
    border: 1px solid #ff6200;
}

.auth-section .form-control::placeholder {
    color: #b0b0b0; /* Light gray placeholders */
}

.btn-primary {
    background-color: #ff6200;
    border-color: #ff6200;
    color: #ffffff; /* White text for buttons */
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55b00;
    border-color: #e55b00;
}

.btn-secondary {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-warning {
    background-color: #ffc107;
    color: #000000;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-google {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-weight: 600;
}

.btn-google::before {
    content: url('https://www.google.com/favicon.ico');
    margin-right: 10px;
}

.widget-card, .task-card {
    background: #ff6200;
    color: #000000; /* Black text for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.widget-card:hover, .task-card:hover {
    transform: translateY(-5px);
}

.widget-card h4, .task-card h5 {
    color: #000000;
    font-weight: 600;
}

.widget-card p, .task-card p {
    color: #1a1a1a; /* Darker text for readability */
}

.alert {
    background-color: #ff6200;
    color: #000000; /* Black text in alerts */
    border-radius: 8px;
    font-weight: 600;
}

.table-dark {
    background-color: #333333;
}

.table-dark th, .table-dark td {
    color: #ffffff; /* White text in tables */
}

footer {
    background: #1a1a1a;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    margin: 0 10px;
    color: #ff9e4a; /* Light orange for footer links */
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff; /* White on hover */
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.4rem;
    }
    header nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    .dashboard h2, .py-5 h2 {
        font-size: 1.5rem;
    }
    .hero h2 {
        font-size: 1.6rem;
    }
    .about p, .terms p, .privacy p, .contact p {
        font-size: 0.9rem;
    }
}
.task-card img {
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.task-card .card-body {
    background: #1a1a1a;
    color: #ffffff;
}

.task-card .card-title {
    color: #ff9e4a;
    font-weight: 600;
}

.task-card .card-text {
    color: #d9d9d9;
}

.task-card .btn-primary {
    background-color: #ff6200;
    border-color: #ff6200;
}

.task-card .btn-secondary:disabled {
    background-color: #555555;
    border-color: #555555;
    color: #ffffff;
}

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

.navbar {
  background-color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.brand-logo-name {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  transition: background-color 0.3s;
}

.nav-menu a:hover {
  background-color: #555;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.active .line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
  }

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

  .nav-menu li {
    margin: 0;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}