/* PANEL.HTML ÖZEL STİLLER */

:root {
    --bg-body: #0f0505;
    --bg-card: rgba(30, 10, 10, 0.6);
    --bg-card-border: rgba(244, 63, 94, 0.15);
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --color-brand: #f43f5e;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-blur {
    background-color: var(--bg-body);
    opacity: 0.95;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bg-card-border);
}

.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-card-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.2);
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 3px solid #ffffff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tab-btn.active {
    background-color: var(--color-brand);
    color: white;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
}

.tab-btn.inactive {
    color: #a3a3a3;
    border-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.inactive:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}
