/* ===================================================================
   YENİ EKLENEN STİLLER
   =================================================================== */

/* --- Yönetici Menüsü (Admin Bar) Stilleri --- */
#tekno-admin-bar {
    position: fixed; top: 0; left: 0; width: 100%; height: 40px;
    background-color: #1a1d24; border-bottom: 2px solid #00aaff;
    z-index: 99999; font-family: 'Inter', sans-serif; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.admin-bar-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 15px; }
.admin-bar-left, .admin-bar-right { display: flex; align-items: center; gap: 15px; }
.admin-bar-item {
    color: #e1e1e1; text-decoration: none; font-size: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.admin-bar-item:hover { color: #00aaff; }
.admin-bar-item.logo-item { font-weight: 700; }
.welcome-item { color: #a0a0a0; }
body.admin-bar-visible { padding-top: 40px; }
body.admin-bar-visible .top-fixed-area { top: 40px; }
.admin-bar-dropdown { position: relative; display: inline-block; }
.admin-bar-dropdown:hover .dropdown-content { display: block; }
.dropdown-content {
    display: none; position: absolute; background-color: #242831;
    min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; border-radius: 0 0 5px 5px; border-top: 2px solid #00aaff;
}
.dropdown-content a {
    color: #e1e1e1; padding: 12px 16px; text-decoration: none;
    display: block; font-size: 14px;
}
.dropdown-content a:hover { background-color: #3a3f4b; color: #fff; }