
header {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    position: fixed;
    width: 100%;
    background: linear-gradient(135deg, rgb(32 175 54), rgb(0 95 39));
    color: white;
    font-weight: 700;
    height: 80px;
    font-size: 18px; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
    z-index: 10000;
    direction: rtl; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding-top: 5px;
}

header .dropDown{
    display: flex;
    gap: 25px;
}

header .logo {
    filter: brightness(1) invert(0);
}

header .logo img{
    height: 65px;
}

header nav .dropDown{
    padding-right: 100px;
}

header nav .dropDown .dropDownBlock{
    padding: 10px;
}

header nav .dropDown .dropDownBlock:hover{
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgb(255, 202, 40);
}

header nav .dropDown .dropDownBlock p{
    font-weight: 700;
}

.phone{
    display: none;
}

.theme-toggle {
    background: linear-gradient(135deg, rgb(32 175 54), rgb(0 95 39));
    border: 1px solid rgb(83, 186, 99);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.theme-toggle {
    background: url('https://www.svgrepo.com/show/266961/settings-gear.svg') center 43% no-repeat rgba(39, 174, 97, 1.7) !important;
    background-size: 36px !important;
    background-position: center;
    background-repeat: no-repeat;
}

.setting-tab {
    position: fixed;
    background-color: aliceblue;
    padding: 1rem;
    border-radius: 15px;
    top: 5rem;
    left: 12%;
    width: 10rem;
    color: black;
    
}

.setting-tab button:hover {
    background-color: rgb(192, 198, 204);
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.setting-tab button {
    width: 5rem;
    height: 5rem;
    font-size: 15px;
    background-color: aliceblue;
    border: solid rgb(20, 107, 33);
    border-radius: 10px;
    padding: 5px;
}

.theme-toggle {
    background-image: url('https://www.svgrepo.com/show/266961/settings-gear.svg') !important;
    background-size: 36px !important;
    background-position: center;
    background-repeat: no-repeat;
}

.theme-toggle:checked {
    background-image: url('https://www.svgrepo.com/show/365893/x-thin.svg');
    transition: all 0.1s;
}

.theme-toggle ~ .setting-tab {
    transition: all 0.1s linear;
    opacity: 0;
}
.theme-toggle:checked ~ .setting-tab {
    opacity: 1;
    transition: all 0.1s linear;
}






.BUTTON {
    color: white;
    width: 4rem;
    height: 4rem;
    font-size: 12px;
    background-color: #0b8037;
    border: solid #268b4d;
    border-radius: 10px;
    padding: 4px;
}
