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


 .flex {
   display: flex;
 }
.flex-col {
    flex-direction: column;
}
.w-full {
    width: 100%;
}

.block {
    display: block;
}

input[type="button"], [type="reset"], [type="submit"] {
    width: 100% !important;
}

.notification-banner {
  position: fixed !important;
  top: 20px;
  right: -400px;
  width: 100%;
  max-width: 400px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  transition: right 0.5s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
}

.notification-banner.show-notification {
  right: 20px;
  opacity: 1 !important;
}