/*
 * This is a manifest file that will 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 defined in the other CSS files in this directory.
 *
 *= require_tree .
 *= require_self
 */
body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.alert {
  border-radius: 8px;
}
.btn {
  border-radius: 6px;
  transition: all 0.2s;
}
.btn:hover {
  transform: translateY(-1px);
}
