Anlamadım ney eksik, lütfen kontrol eder misin tekrar 

/* Genel Sayfa Ayarları */
body {
    font-family: 'Roboto', sans-serif;
    background: #f8f9fa;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden; /* Yatay taşmayı önler */
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Üst Menü (Top Bar) */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 60px; /* ✅ Top-bar yüksekliği ayarlandı */
}


.top-bar .logo img {
    height: 50px;
    margin-right: 10px;
}
/* Logo */
.logo img {
    height: 65px;  /* Güncellenmiş Yükseklik */
}



/* Butonlar */
.btn {
    
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 12px;
    transition: 0.3s;
     color: white !important;
     text-decoration: none !important;
}

.login {
    background: #28a745; /* Yeşil rengi */
    color: white !important;
    text-decoration: none;
}

.login:hover {
    background: #218838; /* Hover'da biraz daha koyu bir yeşil */
    text-decoration: none;
}

.register {
    background: linear-gradient(45deg, #FFC107, #FF9800); 
    color: white !important;
     text-decoration: none !important;
}
.register:hover {
    background: #0F4C8A;
    text-decoration: none;
}
/* Logout Butonu */
.logout {
    background: #0F4C8A;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 12px;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
     color: white !important;
     text-decoration: none !important;
}

.logout:hover {
    background: linear-gradient(45deg, #FFC107, #FF9800);
    text-decoration: none;
}
.register-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
}

.general-container {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 10px;
    padding-bottom: 80px;
    padding-top: 50px;
}

/* Sayfa İçeriği (Tam Ortaya Getirme) */
.container {
    display:flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    
    align-items: center;
    text-align: center;
    margin-top: 20px;
    padding-top: 40px; /* Top Bar yüksekliği kadar boşluk bırak */
    padding-bottom: 80px;  
    
}
@media (max-width: 768px) {
    
    .container {
        padding-top: 5px;
        margin-top: 5px;
    }
    .info-boxes {
         flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 95%;
        
       margin: 0 auto 10px auto; /* ✅ Ortalamak için auto */
        box-sizing: border-box;
    }

    .info-box {
       width: 95%;
        
        margin: 0 auto 10px auto; /* ✅ Ortalamak için auto */
        text-align: center;
         
        min-width: 320px;
    }
}

/* Bilgi Kutuları */
.info-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 90%;
    max-width: 900px;
}

/* Info Box */
.info-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 30%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Hover Efekti */
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Başlıklar */
.info-box h3 {
    font-size: 20px;
    color: #145DA0;
    margin-bottom: 10px;
}

/* Metin */
.info-box p {
    font-size: 16px;
    color: #555;
}

/* İkonlar */
.info-box i {
    font-size: 40px;
    color: #145DA0;
    margin-bottom: 10px;
}

/* Form Alanları */
.form-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
}






/* Footer */
footer {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    margin-top: auto;
}

/* Üstteki İnce Mavi Çizgi */
.footer-line {
    background: #145DA0;
    height: 1px;
    width: 100%;
    position: relative;
    top: 0;
}

footer p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #555;
}

/* Giriş Formu */
.login-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
}

/* Hata ve Uyarı Mesajları */
.error-msg {
    background: #ffebee;
    color: #d32f2f;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    border-left: 5px solid #d32f2f;
    margin-bottom: 10px;
    text-align: left;
}

/* Form Input */
/* Form Input */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 95%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #145DA0; /* Güncellenmiş Mavi Border */
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #0F4C8A;
    box-shadow: 0px 0px 5px rgba(20, 93, 160, 0.5);
}
/* Form Butonu */
button {
    width: 100%;
    padding: 12px;
    background: #145DA0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: block; /* ✅ Butonu bloğa çeviriyoruz */
    margin: 10px auto; /* ✅ Otomatik olarak ortalamak için */
    text-align: center;
}

button:hover {
    background: #0F4C8A;
}


/* Araç Listesi */
.vehicle-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Plaka ve Açıklama Kutusu */
.vehicle {
    text-align: center;
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease;
}

.vehicle:hover {
    transform: scale(1.1);
}

/* Plaka SVG */
.plate {
    display: block;
    margin: auto;
}

/* Araç Açıklaması */
.vehicle-description {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    font-family: "Roboto", sans-serif;
}
/* QR Sayfası */
.qr-container {
    flex: 1;
    min-height: calc(100vh - 150px);
    display: flex;
    position:relative;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* QR Kod */
.qr-code img {
    margin-top: 10px;
    border: 2px solid #145DA0;
    padding: 10px;
    border-radius: 10px;
}

/* PDF İndirme Butonu */
.download {
    padding: 12px 20px;
    background: #145DA0;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 80px;
}

.download:hover {
    background: #0F4C8A;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 20px auto;
}

.message-box {
    background: #f8f9fa;
    border: 1px solid #145DA0;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    color: #333;
}


.message-btn {
    padding: 10px;
    border: 2px solid #ccc;
    background-color: #ddd;
    color: black;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.message-btn.selected {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.content {
    flex: 1;
    margin-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
}





.vehicle-container {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.delete-btn:hover {
    background-color: darkred;
}


.forgot-password-link {
    display: inline-flex;
    align-items: center;
    color: #145DA0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password-link i {
    margin-right: 5px; /* İkon ile metin arasına boşluk bırakır */
}

.forgot-password-link:hover {
    color: #0F4C8A;
    text-decoration: underline;
}


.profile-container {
    width: 40%;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-container h2, .profile-container h3 {
    color: #145DA0;
}

.profile-container form {
    margin-bottom: 20px;
}

.profile-container input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #145DA0;
    border-radius: 5px;
}

.profile-container button {
    background: #145DA0;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.profile-container button:hover {
    background: #0F4C8A;
}

.delete-btn {
    background: red;
    margin-bottom: 80px;
}

.delete-btn:hover {
    background: darkred;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.info-box video {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}







/* Hamburger menü başlangıçta gizli */
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #145DA0;
    padding: 10px;
    
}

.top-menu {
    display: none; /* ✅ Menü varsayılan olarak gizli */
    gap: 15px;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    z-index: 1001;
}
/* Masaüstü için (770px ve üzeri) */
@media (min-width: 770px) {
    .top-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        box-shadow: none;
        background: none;
        padding: 0;
    }

    .hamburger-menu {
        display: none; /* masaüstünde hamburger gizli */
    }
}

/* Mobil için (769px ve altı) */
@media (max-width: 769px) {
    .top-menu {
        display: none; /* mobilde menü gizli başlayacak */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 10px;
        z-index: 1001;
    }

    .hamburger-menu {
        display: block; /* mobilde hamburger ikon göster */
    }

    .top-menu a {
        display: block;
        padding: 10px;
        text-align: center;
        color: #145DA0;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.3s;
    }

    .top-menu a:hover {
        background: #f1f1f1;
    }
}





/* Genel stil ayarları */
.social-login {
    text-align: center;
    margin-top: 20px;
}

.google-login-link {
    display: inline-block;
    background-color: #4285F4; /* Google mavi rengi */
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Beyaz gölge */
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-login-link i {
    margin-right: 10px; /* Google ikonunun metinle arasındaki boşluk */
    font-size: 20px;
}

.google-login-link:hover {
    background-color: #3367D6; /* Google mavi renginin daha koyu tonu */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Hover durumu için daha belirgin gölge */
}

/* Google ikonunun renkli olması için ek stil */
.fab.fa-google {
    color: #fff;
    font-size: 22px; /* Google ikonunun boyutunu ayarlama */
}




