/*
! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com
*/

/* 
This is a minimal version of TailwindCSS with just the styles we need.
In a real implementation, you would use the Tailwind CLI to generate this.
*/

/* Base utilities */
.afftb-container *,
.afftb-container ::before,
.afftb-container ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* Component styles */
.afftb-container {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  isolation: isolate;
}

.afftb-box {
  background-color: #ffffff;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
  margin: 1.5rem 0;
}

.afftb-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem;
}

.afftb-row:last-child {
  border-bottom-width: 0;
}

.afftb-logo {
  flex: 0 0 20%;
  max-width: 150px;
  padding: 0.5rem;
  text-align: center;
}

.afftb-logo img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  width: auto;
}

.afftb-description {
  flex: 1;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.afftb-button {
  flex: 0 0 auto;
  padding: 0 0.5rem;
}

.afftb-button a {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-align: center;
  text-decoration: none;
  transition-property: background-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.afftb-button a:hover {
  background-color: #1d4ed8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .afftb-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .afftb-logo {
    margin-bottom: 0.75rem;
  }
  
  .afftb-description {
    margin-bottom: 1rem;
    padding: 0;
  }
}