:root {
    --primary-color: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary-color: #64748b;
    --background-light: #f8fafc;
    --background-dark: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Genel Stiller */
body {
    background-color: #f3f4f6;
}

/* Tablo satırları için zebra desenli stil */
table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

table tbody tr:nth-child(odd) td.sticky {
    background-color: #ffffff;
}

table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

table tbody tr:nth-child(even) td.sticky {
    background-color: #f9fafb;
}

/* Hover efekti için stil */
table tbody tr:hover {
    background-color: #f3f4f6;
}

table tbody tr:hover td.sticky {
    background-color: #f3f4f6;
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}



/* Sticky başlık için stil */
th.sticky {
    background-color: #f3f4f6 !important;
    z-index: 10;
}

/* Breadcrumb stilleri */
.breadcrumb {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
    .breadcrumb-container {
        padding: 0.5rem 2rem;
    }
}

.breadcrumb-item {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.breadcrumb-item:hover {
    color: #4f46e5;
}

.breadcrumb-separator {
    color: #9ca3af;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

/* Prose için özel stiller */
.prose {
    max-width: none;
    color: #374151;
}

.prose p {
    margin-bottom: 1.5em;
    line-height: 1.75;
}

/* Kart stili */
.card {
    @apply bg-white rounded-lg shadow-sm;
}

.card-header {
    @apply border-b px-6 py-4;
}

.card-body {
    @apply p-6;
}

/* Buton stilleri */
.btn-primary {
    @apply px-4 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 
    transition-colors duration-200 inline-flex items-center space-x-2;
}

/* Input stilleri */
.input-search {
    @apply block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-lg 
    focus:ring-indigo-500 focus:border-indigo-500;
}

/* Chart container stilleri */
.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
} 