html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #F3F3F3;
    font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-item,
.navbar-dark .navbar-text {
    color: rgb(204, 204, 204) !important;
}

.product-card {
    border: none !important;
    border-radius: 0.4rem;
}

.btn-download {
    width: 100%;
}

.btn-product-category.disabled {
    color: #343a40; /* Dark text color */
    border-bottom: 2px solid #343a40; /* Bottom border */
    pointer-events: none; /* Disable mouse events */
}

.btn-link:hover {
    text-decoration: none;
    color: #6c757d; /* Darker gray color on hover */
}
.vip-textbox:focus, .vip-copy-btn:focus {
    outline: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .login-modal {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
    margin: auto;
    width: 500px;
  }

  .login-modal h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .login-modal input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
  }

  .login-modal .btn-primary {
    background-color: #7e22ce;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 2rem;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
  }

  .separator {
    margin: 1rem 0;
    color: #777;
  }

  .btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 2rem;
    background-color: white;
    color: #6b21a8;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0.75rem;
  }

  .btn-social img {
    width: 20px;
    height: 20px;
  }
