

.slider_all {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("../img/all_page.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    margin-top: -75px;


}

.text {
    position: absolute;
    width: 90%;
    text-align: center;
    padding-top: 100px;
    color: #ffffff;
}
.text h1{
    font-size: 40px;
    font-weight: 600px;
    margin: 10px;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    z-index: 1;
}


.calcs {
    display: flex;
    flex-wrap: wrap; /* لجعل الأقسام تتكدس في الشاشات الصغيرة */
    width: 100%;
    background-color: #e8f5e9;
    color: #2e7d32;
    text-align: center;

}

.spc{
   margin: 20px;
}



.calculator-container {
    max-width: 50%;
    margin: auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="number"] {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #2e7d32;
    text-align: right;
    font-size: 17px;
}

#btn_onclick {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #1b5e20;
}

.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.recommendations,
.rewards {
    margin-top: 15px;
    font-size: 16px;
    color: #1b5e20;
}
