/* Sadece Header Kodları Bulunuyor, Footer kodları diğer sayfaların CSS dosyasında mevcut */
header {
    background-color: #003366;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

header .logo img {
    height: 85px;
    border-radius: 30px;
    margin-left: 26px;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    padding: 10px;
}

.navbar ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.navbar ul li {
    margin: 0 10px;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.navbar ul li:hover {
    color: #ff6347;
    background-color: #ff6347;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.navbar a {
    color: white; 
    text-decoration: none;
    font-size: large ;
    transition: all 0.3s ease;
    outline-style: none;
}

.navbar a:hover {
    transition: all 0.3s ease;
}

.user-input .user {
    display: flex;
    gap: 15px;
    list-style-type: none;
    margin-right: 10px;
}

.user-input .user li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 15px;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.user-input .user li a:hover {
    background-color: #ff6347;
    border-color: #ff6347;
}