/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

  /* Styles for extra small devices */
  .container {
    background-color: var(--main-color);
    min-height: 100dvh;
    padding-bottom: 60px;
  }

  .sticky-link {
    padding: 0px 30px;
  }

  .top-sticky a {
    padding: 0px 30px;
  }

  .otp-input {
    width: 40px;
    height: 40px !important;
    border: 1px solid #CFCFCF;
  }

  #otp-form-box {
    padding: 20px;
  }

  .vb-filter-tab button {
    padding: 10px 5px !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

  /* Styles for small devices */
  .container {
    width: 576px;
    background-color: var(--main-color);
    min-height: 100dvh;
    padding-bottom: 60px;
  }

  body {
    background-color: var(--black-color);
  }

  .sticky-link {
    padding-right: 30px;
  }

  .top-sticky a {
    padding: 0px 20px;
  }

  .otp-input {
    width: 50px;
    height: 50px !important;
    border: 1px solid #CFCFCF;
  }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

  /* Styles for medium devices */
  .container {
    width: 576px;
    background-color: var(--main-color);
    min-height: 100dvh;
    padding-bottom: 60px;
  }

  body {
    background-color: var(--black-color);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

  /* Styles for large devices */
  .container {
    width: 576px;
    background-color: var(--main-color);
    min-height: 100dvh;
    padding-bottom: 60px;
  }

  body {
    background-color: var(--black-color);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {

  /* Styles for extra large devices */
  .container {
    width: 576px;
    background-color: var(--main-color);
    min-height: 100dvh;
    padding-bottom: 60px;
  }

  body {
    background-color: var(--black-color);
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

  /* Styles for extra extra large devices */
  .container {
    width: 576px;
    background-color: var(--main-color);
    min-height: 100dvh;
    padding-bottom: 60px;
  }

  body {
    background-color: #000;
  }
}