body{
    direction: rtl;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#space{
    margin: 0 20px;
}

.header{
    position: fixed;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;

    background: linear-gradient(to right bottom, #5D02D7, #09B3FF);
}
.menu{
    width: 25px;
    margin: 20px;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
}

 h1{
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(to right bottom, #5D02D7, #09B3FF); /* التدرج */
    -webkit-background-clip: text; /* اقتص التدرج على النص */
    -webkit-text-fill-color: transparent; /* اجعل النص شفافًا ليظهر التدرج */
    margin: 0;
}
h2{
    background: linear-gradient(to right bottom, #5D02D7, #09B3FF); /* التدرج */
    -webkit-background-clip: text; /* اقتص التدرج على النص */
    -webkit-text-fill-color: transparent; /* اجعل النص شفافًا ليظهر التدرج */
    font-size: 30px;
    font-weight: bold;
}
h3{
    color: rgb(26, 26, 26);
    font-size: 15px;

}
#back-btn{
    text-decoration: none;
    color: white;

}
#a{    
    text-decoration: none;
    background-color: transparent;
    padding: 10px 30px;
    margin: 10px;
    border: 1px solid #09B3FF;
    color: #2e2e2e;
    font-weight: bold;
    border-radius:10px ;
}

#filter{
    color: beige;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.file{
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #09B3FF;
    border-radius:10px ;
    margin: 20px 0;

}
label{
    margin: 10px;
}
#objects{
    background-color: transparent;
    min-width: 100px;
    height: 30px;
    margin: 5px;
    border: 1px solid #09B3FF;
    color: #2e2e2e;
    font-weight: bold;
    border-radius:10px ;


}
.btns{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

button{
    width: 40%;
    height: 30px;
    background-color: transparent;
    border: none;
    box-shadow: 0 0 3px 3px rgb(232, 219, 252);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;

}
button:hover{
    background: #5a6ee0; /* التدرج */
    color: white;
}


.non{
    border-right:2px solid red ;
}

#back{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    
    display: none;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
#more-info{
    top: 100px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 500px;
    min-height: 100px;
    background-color: white;
    box-shadow: 0 0 3px 3px rgb(232, 219, 252);
    border-radius: 5px;
    padding: 10px;
}


