*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}

body{
    background:#f4f6f9;
}

.employees-container{

    width:90%;
    max-width:1200px;

    margin:40px auto;
}

.employees-container h1{

    text-align:center;

    color:#053734;

    margin-bottom:10px;
}

.top-actions{

    margin-bottom:25px;

}

.back-btn{

    background:#053734;

    border:none;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    padding:0;
}

.back-btn:hover{

    background:#D4AF37;

}


.page-description{

    text-align:center;

    color:#666;

    margin-bottom:40px;
}

.back-btn a{

    text-decoration:none;

    color:white;

    display:block;

    width:100%;

    height:100%;

    padding:12px 22px;

}
.employees-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.employee-card{

    background:#fff;

    border-radius:15px;

    padding:25px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.employee-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.avatar{

    width:90px;
    height:90px;

    border-radius:50%;

    background:#053734;

    color:white;

    font-size:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;
}

.employee-card h2{

    color:#053734;

    margin-bottom:8px;

    font-size:22px;
}

.position{

    display:inline-block;

    background:#D4AF37;

    color:white;

    padding:6px 15px;

    border-radius:20px;

    margin-bottom:20px;

    font-size:15px;
}

.info{

    text-align:right;

    direction:rtl;
}

.info p{

    margin:10px 0;

    color:#444;

    line-height:1.8;
}

.description{

    margin-top:20px;

    padding-top:15px;

    border-top:1px solid #ddd;

    color:#666;
}

@media(max-width:768px){

    .employees-container{

        width:95%;
    }

    .employee-card{

        padding:20px;
    }
}