﻿body {
    margin: 0px;
    background-color: #ececec;
    background-image: url('../../bg/back.png');
    border-top: 2px solid #324252;
}

#mobilBanner {
    height: 80px;
    width: 100%;
    /*background-color: #616161;*/
    background-color: #3f5d79;
    display: none;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0px 8px 25px #00000070;
    z-index: 99;
    position:fixed;
    top:0px;
}

#kisi {
    /*background-color: #3f5d79;*/
    /*background-color: #616161;*/
    background-color: #2196f3;
    height: 45px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    color: white;
    font-family: Verdana;
    font-size: 11px;
    text-align: center;
    border-bottom: 1px solid #324252;
    display: none;
    justify-content: flex-start;
    align-items: center;
    z-index: 99;
    position:fixed;
    top:80px;
}

.solTaraf {
    height: 100%;
    width: 300px;
    background-color: #616161;
}

.sagTaraf {
    height: 100%;
    width: calc(100% - 300px);
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    #mobilBanner {
        height: 80px;
        width: 100%;
        background-color: #3f5d79;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        box-shadow: 0px 8px 25px #00000070;
        z-index: 99;
    }

    #kisi {
        display: flex;
    }

    .solTaraf, #bilgiler {
        display: none;
    }

    .solTarafacik {
        height: 100%;
        width: 100%;
        z-index:100;
        position:fixed;
        top:125px;
    }

    .sagTaraf {
        height: 100%;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        position:absolute;
        top:125px;
    }
    .mobil100 {
        width: 100%;
    }
}




.navItem {
    width: 100%;
    min-height: 45px;
    background-color: #616161;
    font-family: Verdana;
    font-size: 14px;
    border-bottom: 1px solid #324252;
    color: white;
    padding-left: 0px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
}

.navLink {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navItem:hover {
    background-color: #3f5d79;
    border-left: 8px solid #ff6a00;
}

.navItem.navOpen {
    background-color: #3f5d79;
    border-left: 8px solid #ff6a00;
    border-bottom: 0;
}

.navArrow {
    font-size: 12px;
    padding-right: 10px;
}

.navSub {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #f7f7f7;
    border-left: 0px solid #ff6a00;
    box-sizing: border-box;
    transition: max-height 0.4s ease;
}

.navItem.navOpen .navSub {
    max-height: 300px;
}

.navSubItem {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    font-family: Verdana;
    font-size: 14px;
    border-top: 1px solid #808080;
}

    .navSubItem:hover {
        background: #ececec;
        border-right: 8px solid #ff6a00;
    }




/*Aşağı çekince Yükleme*/
#pullRefresh {
    position: fixed;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #2f3b52;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 1;              /* 🔴 düşürdük */
    pointer-events: none;    /* 🔴 tıklamayı tamamen geçirir */
    transition: top 0.25s ease;
    font-family: Verdana;
}

    #pullRefresh.show {
        top: 0;
    }

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

#pullRefresh.loading .spinner {
    display: block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/*SONUÇ*/
#sonuc {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    /*width: 600px;*/
    width: 100%;
    height: 60px;
    font-size: 18px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease; /* Yavaşça kaybolma animasyonu */
}

.panelSonuc {
    width: 600px;
    -webkit-box-shadow: 0 0 5px 2px black;
    -moz-box-shadow: 0 0 5px 12px black;
    box-shadow: 0 0 5px 2px black;
}
/*RIZA ONAY*/
.RizaAlanAcik {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(51,51,51,0.7);
    z-index: 10;
    text-align: center;
    padding-top: 80px;
    display: block;
}

.RizaAlanKapali {
    display: none;
}