::-webkit-scrollbar {
    width: 10px; 
}
::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3a93da;
}
.DrPHP_Menu {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 20px;
    box-shadow: 1px 1px 15px #ccc;
    transition: width 0.5s;
}
.DrPHP_Menu_main {
    margin-right: 250px; /* Same as the width of the DrPHP_Menu */
    font-size: 28px; /* Increased text to enable scrolling */
    padding: 0px 10px;
    direction: rtl;
    background-color: #fff;
    transition: margin-right 0.5s;
}
.DrPHP_Menu_main02 {
    margin-right: 250px;
    direction: rtl;
    transition: margin-right 0.5s;
    text-align: center;
    display: block;
}
.DrPHP_Menu_button {
    background-color: #fff;
    color: #444;
    cursor: pointer;
    padding: 15px;
    border: none;
    text-align: right;
    outline: none;
    font-size: large;
    font-family: auto;
    font-weight: bold;
    transition: 0.4s;
    margin: 3px 10px;
    border-radius: 10px;
}
.DrPHP_Menu_button span{
    padding: 0px 0px 0px 10px;
}
.active, .DrPHP_Menu_button:hover {
    background-color: #f3f3f3;
    border-right: 5px solid #f3f3f3;
    color:#3a93da;
}
.active2{
    background-color: #3a93da3d;
    color: #3a93da;
    border-right: 5px solid #3a93da;
}
.active3{
    color: #3a93da!important;
}
.active4{
    background-color: #3a93da3d;
    color: #3a93da;
    border-right: 5px solid #3a93da;
}
.DrPHP_Menu_panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.DrPHP_Menu_panel a {
    direction: rtl;
    padding: 10px;
    font-weight: bold;
    font-size: medium;
    font-family: auto;
    display: block;
    text-decoration: none;
    color: #333;
}
.DrPHP_Menu_panel a:hover {
    color: #3a93da;
}
.DrPHP_Menu_panel a i{
    float: left;
}
.DrPHP_Menu_logo{
    width: 70%;
    margin: 0px auto 0px auto;
}
.DrPHP_Menu_logoDiv{
    font-weight: bold;
    color: #3a93da;
    text-shadow: 1px 1px 15px #3a93da;
    line-height: 0px;
    text-align: center;
    margin: 0px auto 50px auto;
}
#DrPHP_Menu_copyRightDiv {
    position: sticky;
    min-height: 100px;
    text-align: center;
    margin: 0px auto;
    width: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 82%, rgba(255,255,255,0) 100%);
    display: inline-block;
    bottom: 0px;
}
#DrPHP_Menu_copyRight {
    margin: 20px auto 0px auto;
    direction: rtl;
    color: #03a9f4;
    font-weight: bold;
    font-size: small;
    text-decoration: none;
    display: block;
}
.DrPHP_Menu_HomeButton{
    text-decoration: none;
}
.DrPHP_Menu_closeSlider{
    position: fixed;
    top: 5px;
    right: 13%;
    background: #ff0000ab;
    border-radius: 5px;
    backdrop-filter: blur(9.5px);
    border: 1px solid ;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 15px;
    color: #fff;
    cursor: pointer;
    z-index: 99;
    transition: right 0.5s;
}
.DrPHP_Menu_closeSlider:hover{
    background: #333333ab!important;
    color: #fff;
    border: 1px solid ;
}