.adsense-calculator {

    max-width:1100px;
    margin:auto;
    background:#E9E9E95E;
    padding:25px;
    border-radius:18px;
    font-family:Arial, sans-serif;

}


.calc-header {

    text-align:center;
    margin-bottom:25px;

}


.calc-header h2 {

    color:#1a2e46;
    font-size:32px;

}


.calc-header p {

    color:#555;

}



.calc-grid {

    display:grid;
    grid-template-columns:1fr;
    gap:20px;

}



.inputs-card,
.results-card {

    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px #0001;

}



label {

    display:block;
    margin-bottom:18px;
    color:#1a2e46;
    font-weight:600;

}



input {

    width:100%;
    padding:12px;
    margin-top:7px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:16px;

}



small {

    color:#777;
    font-weight:400;

}



.buttons button {

    width:100%;
    padding:12px;
    background:#c82c2f;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
}



.results-card {

    display:grid;
    gap:15px;

}



.result-box {

    background:#5271ff12;
    padding:18px;
    border-radius:14px;

}



.result-box span {

    display:block;
    color:#555;

}



.result-box strong {

    font-size:28px;
    color:#1a2e46;

}



.traffic-section {

    background:white;
    margin-top:25px;
    padding:20px;
    border-radius:15px;

}



table {

    width:100%;
    border-collapse:collapse;

}



td,th {

    padding:12px;
    border-bottom:1px solid #ddd;
    text-align:center;

}



.note {

    margin-top:20px;
    background:#fff;
    padding:15px;
    border-radius:12px;
    color:#555;

}




@media(min-width:768px){


.calc-grid {

    grid-template-columns:1fr 1fr;

}


}