/* /home/aegonzalez95/ApoScript/static/style.css */

/* Last update: 07-03-2025      version 2.1 */

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #212529;
}

/* Navbar Styling */
.navbar {
  margin-bottom: 1rem;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* Hero Section (Jumbotron)
   The background image is referenced relatively.
   Since style.css is in the static folder and images/ is a subfolder,
   the correct path is "images/home-bg.jpg". */
.hero-section {
  background: url("images/home-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
}

/* Jumbotron Text */
.jumbotron {
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.jumbotron h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.jumbotron p {
  font-size: 1.25rem;
}

/* Card Styling */
.card {
  margin-bottom: 1rem;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.03);
}

/* Utility Classes */
/* Additional custom styles and overrides can be added here */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }

/* === Select2 Fix === */
/* Ensure the rendered selection text never overflows its container */
.select2-selection__rendered {
  max-width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
