/* Stat Cards */
.stat-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stat-card-info h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.stat-card-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}



.stat-card-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon i {
    font-size: 24px;
    color: #0B4DF5;
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.card-body {
    padding: 20px;
}



/* Responsive */
@media (max-width: 991px) {
    .stat-card {
        margin-bottom: 20px;
    }
}

/* İletişim Sayfası Düzeltmeleri */
.contact-form {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-form .title {
    margin-bottom: 30px;
    color: #1C2539;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #DF0A0A;
    outline: none;
    box-shadow: 0 0 0 2px rgba(223, 10, 10, 0.1);
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .rts-btn {
    margin-top: 20px;
    padding: 15px 30px;
    background: #DF0A0A;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .rts-btn:hover {
    background: #B00F0F;
    transform: translateY(-2px);
}

.map-area {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-area iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* İletişim Sidebar Stilleri */
.contact-sidebar {
    padding-left: 30px;
}

.contact-info,
.working-hours,
.social-media {
    margin-bottom: 40px;
    padding: 25px;
    background: #f6f6f6;
    border-radius: 10px;
}

.contact-info .title,
.working-hours .title,
.social-media .title {
    margin-bottom: 20px;
    color: #1C2539;
    font-weight: 600;
}

.contact-info .single-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .single-info i {
    width: 40px;
    height: 40px;
    background: #DF0A0A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info .single-info a,
.contact-info .single-info span {
    color: #5D666F;
    text-decoration: none;
    font-weight: 500;
}

.contact-info .single-info a:hover {
    color: #DF0A0A;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.working-hours ul li:last-child {
    border-bottom: none;
}

.working-hours ul li span:first-child {
    font-weight: 500;
    color: #1C2539;
}

.working-hours ul li span:last-child {
    color: #5D666F;
}

.social-media .social-links {
    display: flex;
    gap: 15px;
}

.social-media .social-links a {
    width: 45px;
    height: 45px;
    background: #DF0A0A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media .social-links a:hover {
    background: #B00F0F;
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .contact-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-form {
        margin-bottom: 40px;
    }
    
    .map-area {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 12px;
    }
    
    .contact-form .rts-btn {
        padding: 12px 25px;
        width: 100%;
    }
    
    .contact-info,
    .working-hours,
    .social-media {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .map-area iframe {
        height: 350px;
    }
}

.register-form .form-control, .register-form textarea.form-control {
    border: 1px solid #000 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    background: #fff !important;
    transition: border-color 0.3s;
}

.register-form .form-control:focus, .register-form textarea.form-control:focus {
    border-color: #222 !important;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15) !important;
}

/* FAQ Page Styles */
.faq-hero-section {
    position: relative;
    overflow: hidden;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Yeni Arama Tasarımı */
.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}

.search-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1001;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.2rem;
    z-index: 1002;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    border-radius: 50px;
    position: relative;
    z-index: 1002;
}

.search-input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid #e9ecef;
}

.search-suggestions.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestion-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    border: none;
}

.suggestion-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.suggestion-tag:active {
    transform: scale(0.95);
}

/* Arama sonuçları animasyonu */
.accordion-item {
    transition: all 0.3s ease;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
}

.category-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 20px;
}

.category-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-buttons .btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #007bff;
    display: inline-block;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.accordion-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    line-height: 1.6;
}

.contact-card {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #333;
}

.contact-methods {
    font-size: 0.9rem;
}

.quick-links a {
    color: #333;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.quick-links a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.stats-card {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.package-card {
    transition: all 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.package-card.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

/* Alert styles for FAQ */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

/* Responsive adjustments for FAQ */
@media (max-width: 991px) {
    .faq-hero-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .faq-hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .faq-hero-section p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .search-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .search-wrapper {
        border-radius: 30px;
        padding: 8px;
    }
    
    .search-input {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .search-suggestions {
        border-radius: 15px;
        padding: 15px;
        gap: 10px;
        top: calc(100% + 10px);
    }
    
    .suggestion-tag {
        padding: 10px 18px;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    .category-buttons .btn {
        padding: 10px 20px;
        font-size: 1rem;
        margin: 0 8px 12px 8px;
        border-radius: 30px;
        min-height: 45px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        min-height: 60px;
        display: flex;
        align-items: center;
    }
    
    .accordion-body {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .contact-card,
    .quick-links,
    .stats-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .contact-card h5,
    .quick-links h6,
    .stats-card h6 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-methods {
        font-size: 1rem;
    }
    
    .contact-methods .d-flex {
        margin-bottom: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .quick-links a {
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    
    .stats-card .row {
        margin-top: 1rem;
    }
    
    .stats-card h4 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .stats-card small {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq-hero-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .faq-hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .faq-hero-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .search-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .search-wrapper {
        border-radius: 25px;
        padding: 6px;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .search-suggestions {
        border-radius: 12px;
        padding: 12px;
        gap: 8px;
        top: calc(100% + 8px);
    }
    
    .suggestion-tag {
        padding: 8px 15px;
        font-size: 0.9rem;
        border-radius: 20px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .category-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .category-buttons .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 0;
        border-radius: 25px;
        min-height: 40px;
        flex: 0 0 auto;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .accordion-button {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        min-height: 55px;
        line-height: 1.4;
    }
    
    .accordion-body {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .accordion-body ul,
    .accordion-body ol {
        padding-left: 1.5rem;
    }
    
    .accordion-body li {
        margin-bottom: 0.5rem;
    }
    
    .contact-card,
    .quick-links,
    .stats-card {
        margin-bottom: 1rem;
        padding: 1.2rem;
    }
    
    .contact-card h5,
    .quick-links h6,
    .stats-card h6 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-methods {
        font-size: 0.95rem;
    }
    
    .contact-methods .d-flex {
        margin-bottom: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .quick-links a {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .stats-card .row {
        margin-top: 0.8rem;
    }
    
    .stats-card h4 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stats-card small {
        font-size: 0.85rem;
    }
    
    /* Package cards responsive */
    .package-card {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .package-card h6 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .package-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .package-card ul {
        font-size: 0.85rem;
    }
    
    /* Alert responsive */
    .alert {
        padding: 0.8rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Row responsive for package cards */
    .row .col-md-4,
    .row .col-md-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .faq-hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-hero-section p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .search-container {
        padding: 0 10px;
    }
    
    .search-wrapper {
        border-radius: 20px;
        padding: 5px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .search-suggestions {
        padding: 10px;
        gap: 6px;
        top: calc(100% + 5px);
        border-radius: 10px;
    }
    
    .suggestion-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 15px;
        min-height: 35px;
    }
    
    .category-buttons {
        gap: 6px;
    }
    
    .category-buttons .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
        min-height: 35px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .accordion-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .contact-card,
    .quick-links,
    .stats-card {
        margin-bottom: 0.8rem;
        padding: 1rem;
    }
    
    .contact-card h5,
    .quick-links h6,
    .stats-card h6 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-methods {
        font-size: 0.9rem;
    }
    
    .contact-methods .d-flex {
        margin-bottom: 0.5rem;
        padding: 0.3rem 0;
    }
    
    .quick-links a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .stats-card h4 {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .stats-card small {
        font-size: 0.8rem;
    }
    
    /* Package cards extra small */
    .package-card {
        padding: 0.8rem;
    }
    
    .package-card h6 {
        font-size: 1rem;
    }
    
    .package-card p {
        font-size: 0.85rem;
    }
    
    .package-card ul {
        font-size: 0.8rem;
    }
    
    /* Alert extra small */
    .alert {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Force single column layout for very small screens */
    .row .col-md-4,
    .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Additional responsive improvements for FAQ content */
@media (max-width: 768px) {
    .faq-content-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .faq-categories {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Improve sidebar layout on mobile */
    .faq-sidebar {
        margin-top: 2rem;
    }
    
    /* Better spacing for accordion items */
    .accordion-item {
        margin-bottom: 0.8rem;
    }
    
    /* Improve text readability */
    .accordion-body p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .accordion-body strong {
        font-weight: 600;
    }
    
    /* Better button spacing */
    .btn {
        margin-bottom: 0.5rem;
    }
    
    /* Improve form elements */
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    /* Better table responsiveness */
    .table-responsive {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .table {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for clickable elements */
    .accordion-button {
        cursor: pointer;
        user-select: none;
    }
    
    .accordion-button:active {
        transform: scale(0.98);
    }
    
    /* Improve link accessibility */
    a {
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    /* Better focus states for accessibility */
    .btn:focus,
    .accordion-button:focus,
    .form-control:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
    
    /* Quick links responsive improvements */
    .quick-links .row .col-6 a {
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }
    
    .quick-links .row .col-6 a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        background: #f8f9fa !important;
    }
    
    .quick-links .row .col-6 a:active {
        transform: scale(0.95);
    }
    
    /* Contact methods responsive improvements */
    .contact-methods .d-flex {
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }
    
    .contact-methods .d-flex:hover {
        background: #f8f9fa !important;
        transform: translateX(5px);
    }
    
    /* Package cards responsive improvements */
    .package-card {
        transition: all 0.3s ease;
        border: 1px solid #e9ecef !important;
    }
    
    .package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: #007bff !important;
    }
    
    /* Better spacing for mobile */
    .faq-content-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra small screen improvements */
@media (max-width: 480px) {
    .quick-links .row .col-6 a {
        min-height: 50px;
        font-size: 0.85rem;
    }
    
    .contact-methods .d-flex {
        font-size: 0.85rem;
        padding: 0.5rem !important;
    }
    
    .package-card {
        padding: 0.8rem !important;
    }
    
    .package-card h6 {
        font-size: 0.95rem;
    }
    
    .package-card p,
    .package-card ul {
        font-size: 0.8rem;
    }
    
    /* Improve text wrapping */
    .accordion-button {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-title {
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Satış listesi istatistik kartları - Siyah yazı rengi */
.stats-card,
.stats-card *,
div.stats-card,
div.stats-card * {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    color: #333333 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.stats-card {
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.stats-card h3,
.stats-card h1,
.stats-card h2,
.stats-card h4,
.stats-card h5,
.stats-card h6,
div.stats-card h3,
div.stats-card h1,
div.stats-card h2,
div.stats-card h4,
div.stats-card h5,
div.stats-card h6 {
    color: #000000 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.stats-card p,
.stats-card span,
.stats-card small,
div.stats-card p,
div.stats-card span,
div.stats-card small {
    color: #333333 !important;
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

/* Filtreleme alanları */
.filter-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.filter-card .form-control,
.filter-card .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 14px;
}

.filter-card .form-control:focus,
.filter-card .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Sayfalama */
.pagination .page-link {
    border-radius: 6px;
    margin: 0 2px;
    border: 1px solid #ddd;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Aktif filtreler */
.badge {
    font-size: 0.75em;
}

/* İşlem butonları */
.btn-group-sm .btn {
    padding: 4px 8px;
    font-size: 12px;
}

/* Tablo responsive */
@media (max-width: 768px) {
    .filter-card .col-md-3,
    .filter-card .col-md-2,
    .filter-card .col-md-4 {
        margin-bottom: 15px;
    }
    
    .btn-group-sm {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .btn-group-sm .btn {
        border-radius: 4px !important;
    }
}
