.ad-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
}

.ad-box {
    width: 100%;
    overflow: hidden;   /* 👈 THIS prevents overflow */
    text-align: center;
}

.adsbygoogle {
    display: block !important;
    width: 100% !important;
}

main {
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-direction: column;
    /* padding: 2rem; */
    /* text-align: center; */
    width: 50%;
}


label {
    font-weight: bold;
    font-size: 14px;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin: 6px 0 15px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background: #00b894;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #019875;
}

.result {
    margin-top: 15px;
    padding: 12px;
    background: #f1f2f6;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}



/* Responsive */
@media(max-width:500px) {
    .innerPageContainer{
        padding: 50px 0px;
    }
    main {
        width: 90%;
    }
}