/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Landing page styles - only for the home page */
.pages-home {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pages-home main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Login page styling */
body {
  background-color: #f8f9fa;
}

/* Custom navbar styling */
.navbar-brand {
  font-size: 1.5rem;
}

/* Footer styling */
footer {
  margin-top: auto;
}

/* Todo card styling */
.todo-card {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

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

.todo-card.completed {
  opacity: 0.7;
  background-color: #f8f9fa;
  border-color: #dee2e6 !important;
}

.todo-card.completed .card-title {
  text-decoration: line-through;
  color: #6c757d !important;
}

.todo-card.completed:hover {
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.badge-sm {
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
}
