/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.cursor-pointer {
  cursor: pointer;
}

/* Custom label size for job details - approximately 20% larger than default small */
.job-detail-label {
  font-size: 1.05rem;
}

/* Increase container width by approximately 25% for larger screens */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1425px; /* 1140 * 1.25 */
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1650px; /* 1320 * 1.25 */
  }
}
