/* Apply Inter font to the whole page */
body {
   font-family: 'Inter', sans-serif;
   background-color: #1a1a1a; /* Dark background, as seen in screenshots */
   color: #ffffff;
}


.payment-methods {
    padding: 25px 15px; 
    margin-top: 40px;
}

.payment-methods-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 25px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-methods-item {
    line-height: 0;
}

.payment-methods-logo {
    height: 35px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

      

.dropdown {
    position: relative;
    display: inline-block;
    /* padding-bottom: 8px; резерв місця під кнопкою, щоб не було "дірки" */
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease-in-out;
}


.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}
  /* Custom styles for the bonus table */
       .bonus-table th, .bonus-table td {
           border: 1px solid #4a5568; /* gray-700 */
           padding: 12px;
           text-align: left;
       }
       .bonus-table th {
           background-color: #2d3748; /* gray-800 */
           color: #a0aec0; /* gray-400 */
           font-weight: 600;
       }
       
     /* Custom styles for the table to match the theme */
       table {
           width: 100%;
           border-collapse: collapse;
           margin-top: 1.5rem;
           margin-bottom: 1.5rem;
       }
       th, td {
           border: 1px solid #4a5568; /* gray-600 */
           padding: 0.75rem 1rem;
           text-align: left;
       }
       th {
           background-color: #2d3748; /* gray-700 */
           font-weight: 600;
           color: #a0aec0; /* gray-400 */
       }
       td {
           background-color: #1a202c; /* gray-800 */
       }
   
