  .payment-container {
    margin-top:11vh;
    width: 100%;
    max-width: 800px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }

  .payment-header {
    margin-bottom: 24px;
    text-align: center;
  }

  .payment-title {
    font-size: 24px;
    font-weight: bold;
    color: black;
  }

  .payment-amount {
    color: #6b7280;
    margin: 0;
  }

  .payment-methods-container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 16px;
    align-items: center;
  }

  .payment-group {
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    padding: 16px;
    margin-bottom: 24px;
  }

  .payment-group:last-child {
    margin-bottom: 0;
  }

  .payment-group-title {
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid black;
  }

  .providers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .provider-form {
    width: 100%;
  }

  .provider-button {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    max-width:300px;
  }

  .provider-button:hover {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .provider-button:active {
    transform: scale(0.98);
  }

  .provider-logo {
    flex-shrink: 0;
    width: 80px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
  }

  .provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .provider-logo-fallback {
    width: 100%;
    height: 100%;
    background-color: #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
  }

  .provider-name {
    flex-grow: 1;
    font-weight: 500;
    color: #1f2937;
  }

  .provider-arrow {
    flex-shrink: 0;
    margin-left: 16px;
    color: #9ca3af;
  }

  .provider-arrow svg {
    width: 20px;
    height: 20px;
  }

  .loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 256px;
  }

  .loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  .empty-state {
    text-align: center;
    padding: 32px;
    color: #6b7280;
  }

  .error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-content {
    text-align: center;
  }

  .error-title {
    font-size: 20px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 8px;
  }

  .error-message {
    color: #6b7280;
    margin-bottom: 16px;
  }

  .retry-button {
    padding: 8px 16px;
    background-color: #3b82f6;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
  }

  .retry-button:hover {
    background-color: #2563eb;
  }

  .page-container {
    min-height: 100vh;
    background-color: #f3f4f6;
    padding: 32px 16px;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* Scrollbar styling */
  .payment-methods-container::-webkit-scrollbar {
    width: 8px;
  }

  .payment-methods-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }

  .payment-methods-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }

  .payment-methods-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.overlay-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
  
.overlay-content::-webkit-scrollbar {
    display: none;
}
/* General Styles */
body{
  margin:0;
  padding:0;
}
.video-background,
.img-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .header {
    background-color: none;
    color: black;
  }
  
  .header-grid {
    display: grid;
    grid-template-columns: minmax(20%,1fr) minmax(40%,1fr) minmax(40%,1fr);
    grid-template-rows: auto auto;
  }
  
  .logo-container {
    padding: 1vw 1vw 0 1vw;
    display: flex;
    align-items: center;
    grid-column: 1 / 2;
  }
  
  .company-name {
    margin-left: calc(0.3rem + 0.3vw);
    font-weight: lighter;
    font-size: 7vmin;
    font-family: 'Smooch Sans', sans-serif;
    margin: 0;
  }
  
  .auth-container {
    padding: 1vw 1vw 0 1vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-column: 3;
  }
  
  .auth-button {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    padding: 0.3vw 0.6vw;
    border-radius: 0.25rem;
    border: none;
    color: black;/*white;*/
    cursor: pointer;
    font-size: min(2vw, 1.2rem);
    min-width: auto;
    width:9vw
  }
  
  .signin-button {
    background-color: #4383bb;
    //background-color: transparent;
    font-family: Smooch Sans, sans-serif;
  }
  
  .signout-button {
    background-color: #E53E3E;
  }
  
  .language-container {
    padding: 0vw 1vw 0 1vw;
    display: flex;
    align-items: flex-end;
    height: 100%;
    grid-row: 2;
    grid-column: 1 / 2;
  }
  
  .language-selector {
    display: flex;
    height: 100%;
  }
  
  .language-selector select:active,
  .language-selector select:focus {
    border: none;
    outline: none; /* Optional: Removes the focus outline */
  }
  
  .globe-icon {
    margin-right: 0.5vw;
  }
  
  .language-dropdown {
    background-color: #73a5cf;
    color: white;
    border-radius: 0.25rem 0.25rem 0 0;
    padding: 0.25vw 0.5vw;
    border: none;
    height: auto;
    font-size: min(2vw, 1.2rem);
    font-family: Smooch Sans, sans-serif;
  }
  
  .tabs-container {
    padding: 0vw 1vw 0 1vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    grid-row: 2;
    grid-column: 2 / 4;
  }
  
  .tabs-nav {
    display: flex;
    height: 100%;
    gap: 0.5vw;
  }
  
  .tab-button {
    padding: 0.4vw 0.8vw;
    display: flex;
    align-items: center;
    background-color: #4A5568;
    color: white;
    border: none;
    cursor: default;
    border-radius: 0.25rem 0.25rem 0 0;
    height: auto;
    font-size: min(2vw, 1.2rem);
    transition: background-color 0.2s ease;
    min-width: auto;
    white-space: nowrap;
    font-family: Smooch Sans, sans-serif;
    text-decoration: none;
    justify-content:center;
  }
  
  .active-tab {
    background-color: #73a5cf;
  }
  
  .tab-icon {
    margin-right: 0.25vw;
  }
  
  .main-content {
    flex-grow: 1;
    background-color: #E2E8F0;
    padding: 0;
    overflow: auto;
    position: relative;
    margin-top: -1px;
  }
  
  .content-container {
    background-color: white;
    min-height: 100%;
    width: 100%;
    border-top: none;
    display: flex;
    flex-direction: column;
  }
  
  .purple-spacer {
    height: 0.5rem;
    background-color: #73a5cf;
    width: 100%;
    flex-shrink: 0;
  }
  
  .content-body {
    padding: 1.5rem;
    flex-grow: 1;
  }
  
  .content-title {
    font-size: calc(1.2rem + 0.4vw);
    font-weight: bold;
    margin-bottom: calc(0.7rem + 0.3vw);
  }
  
  .placeholder-content {
    margin-top: 1rem;
  }
  
  .content-box {
    height: 16rem;
    width: 100%;
    background-color: #F7FAFC;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
  }
  .blurred{
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    -webkit-backdropfilter: blur(10px);
    box-shadow: 0 0px 6px 1px rgba(0, 0, 0, 0.7);    
  }
  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .footer {
    /*background-color: #4383bb;*/
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdropfilter: blur(10px);
    color: white;
    padding: 1vmin;
    max-height:10vh;
    align-content:flex-start;
    margin:0
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .footer-heading {
    font-size: calc(1.2rem + 0.25vmin);
    font-weight: 600;
    margin:0
  }
  
  .footer-text {
    font-size: calc(0.7rem + 0.2vmin);
    color: #73a5cf;
    margin:0
  }
  .tablerow {
    /* Base styles */
    border: none;
    outline: none;
    caret-color: transparent;

  }
.item-icon{
  margin-top:5px;
}
.tablerow:focus {
    outline: none;
    caret-color: transparent;
    
}

.tablerow:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    caret-color: transparent;

}

/* If you need to add specific browser variants */
.tablerow:-moz-focus-inner {
    border: 0;
    caret-color: transparent;
}

/* For extra specificity if needed */
input.tablerow:focus-visible {
    outline: none !important;
    caret-color: transparent;
}


