/*
 * 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.
 */

/* Remove default browser focus styles on all form elements */
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none !important;
}

/* Animated border gradient for active bot cards using CSS custom properties */
@property --border-angle {
  inherits: false;
  initial-value: 0deg;
  syntax: '<angle>';
}

@keyframes border {
  to {
    --border-angle: 360deg;
  }
}

.animate-border {
  animation: border 4s linear infinite;
}

@media (min-width: 768px) {
  .h-available {
    height: -webkit-fill-available;
  }
}