/* Small helper file that keeps the front-page drawer responsive and hides the floating controls on small screens. */

.abfc-side-nav__group--actions {

  display: none;

}

@media (max-width: 768px) {

  .abfc-side-nav__group--actions {

    margin-top: 1.25rem;

    padding: 1rem 1.25rem 1.5rem;

    display: flex;

    flex-direction: column;

    gap: 0.85rem;

  }

  .abfc-side-nav__group--actions .abfc-side-nav__link {

    width: 100%;

    justify-content: center;

    padding: 1rem 1.25rem;

    border-radius: 999px;

    font-weight: 600;

    text-align: center;

    box-shadow: 0 12px 24px rgba(3, 7, 18, 0.35);

    transition: transform var(--transition), box-shadow var(--transition);

  }

  .abfc-side-nav__group--actions .abfc-side-nav__link.menu-item-help {

    background: linear-gradient(135deg, #03112d, #243c7a);

    border: 1px solid rgba(255, 255, 255, 0.25);

  }

  .abfc-side-nav__group--actions .abfc-side-nav__link.menu-item-logout {

    background: linear-gradient(135deg, #ef4444, #b91c1c);

    border: 1px solid rgba(255, 255, 255, 0.45);

  }

  .abfc-side-nav__group--actions .abfc-side-nav__link:hover,
.abfc-side-nav__group--actions .abfc-side-nav__link:focus-visible {

    transform: translateY(-1px);

    box-shadow: 0 16px 28px rgba(3, 7, 18, 0.45);

  }

  .abfc-logout-floating,

  #abfc-chatbot-fab,

  .abfc-chatbot__fab {

    display: none !important;

    visibility: hidden !important;

  }

}
