#wp-disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-disclaimer-modal {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 70%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#wp-disclaimer-accept {
    padding: 5px 15px;
    background: #e30f00;
    color: #fff;
    border: none;
    cursor: pointer;
}

.wp-disclaimer-modal img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

#wp-disclaimer-accept {
    margin-top: 10px;
}

/* For extra small screens */
@media screen and (max-width: 390px) {
  .wp-disclaimer-modal img {
    width: 160px;
    margin-top: -30px;
  }
}

/* For small to medium devices like tablets */
@media screen and (min-width: 391px) and (max-width: 1024px) {
  .wp-disclaimer-modal img {
    width: 200px;
    margin-top: -30px;
  }
}

/* For larger desktops */
@media screen and (min-width: 1025px) {
  .wp-disclaimer-modal img {
    width: 300px;
    margin-top: -30px;
  }
}

@media screen and (max-width: 390px) {
    #wp-disclaimer-overlay {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .wp-disclaimer-modal {
        max-width: 90%;
        height: 90%;
    }
}

@media screen and (min-width: 753px) {
    #wp-disclaimer-overlay {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .wp-disclaimer-modal {
        max-width: 90%;
        max-height: 50%;
    }
}

@media screen and (min-width: 1204px) {
    #wp-disclaimer-overlay {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .wp-disclaimer-modal {
        max-width: 90%;
        max-height: 90%;
    }
}