/* panel.css - Yönetici Panel Stili */

/* Logo Filtresi */
.logo-blue-filter {
    filter: brightness(0) saturate(100%) invert(32%) sepia(99%) saturate(1908%) hue-rotate(203deg) brightness(103%) contrast(106%) !important;
}

/* Avatar */
.avatar {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #495057;
}

/* Buton Stilleri */
.btn-toggle-pass {
    border-left: 0;
    border-color: #ced4da;
    background: white;
    color: #6c757d;
}

.btn-toggle-pass:hover {
    background: #f8f9fa;
    color: #333;
}

/* Developer Badge */
.dev-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.dev-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    color: #000;
}

/* Developer Footer */
.developer-footer {
    margin-top: auto;
    background: #212529;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 13px;
    }
}
