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



body {
    background-color: #1e1e1e;
}



.headercontainer {
    position: fixed;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    background-color: #0e0e0e;
}



.headerlogo {
    position: relative;
    width: 80px;
}



.headerlogo button,
.headerlogo img {
    position: relative;
    left: 10px;
    width:96%;
    background-color: rgb(0, 0, 0, 0);
    border: none;
    margin-left: 5px;
    cursor: pointer;
}



.headerselect select {
    position: relative;
    margin-right: 10px;
    background-color: #3e3e3e;
    width: 150px;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}



.searchbox{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 50px;
}




.menucontainer {
    position:fixed;
    top: 90px;
    z-index: 1002;
    width: 20%;
    height:100%;
    background-color: #0e0e0e;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}



.maincontainer{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}



.menucontainer a {
    text-decoration: none;
    color: #fff;
    background-color: #1e1e1e;
    width: 90%;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    text-align: center;
}



.menucontainer a:hover,
.menucontainer a:focus{
    background-color: #f00;
}



@media (max-width:600px) {
    .headerselect select {
        width: 80px;
        padding: 5px;
    }

    .headerselect select{
        width: 80px;
        padding: 5px;
    }
    .headerlogo{
        position: relative;
        left:-10px;
        width: 40px;
    }
    .headertext h1{
        font-size:large;
    }
    .headertext h1 {
        font-size: large;
    }

    .menucontainer {
        width: 40%;
    }
}


.alert {
    display: none;
    color: white;
    margin-top: 10px;
    padding: 15px;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 2000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease forwards;
}

/*GENEL  SAĞ USTE CIKAN ALERT  */
.alert.success {
    background-color: #4CAF50;
    color: white;
}

.alert.error {
    background-color: #f44336;
    color: white;
}

.alert .closebtn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

@keyframes slideIn {
    from {
        right: -300px;
        opacity: 0;
    }

    to {
        right: 20px;
        opacity: 1;
    }
}
.kur-container {
    position: relative;
    bottom: -50px;
    width: 86%;
    padding: 15px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    color: #ffffff;
}

.kur-container h3 {
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #ff0000;
}

.kur-container p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
}

.kur-container span {
    font-size: 12px;
    color: #04aa6d;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.bilgim {
    font-size: 9px;
    color: #ff0000;
    text-align: center;
    justify-content: center;


}