﻿/* Modern Tercih Sistemi Styles */

body {
    background: #f8fafc;
    font-family: 'Montserrat', Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
        z-index: -1;
    }

.modern-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem;
    border: none;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: cardSlideIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754, #ffc107, #dc3545);
}

.modern-header {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem !important;
    min-height: auto;
    margin-bottom: 0.5rem !important;
    margin-top: 20px !important;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    animation: headerSlideIn 0.8s ease-out;
}

@keyframes headerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754, #ffc107, #dc3545);
}

.modern-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.modern-logo {
    max-height: 40px;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.modern-alert {
    font-size: 1.1rem;
    border-radius: 1rem;
    margin-bottom: 2rem !important;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 2px solid #17a2b8;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.2);
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.modern-btn {
    font-size: 1.2rem;
    padding: .75rem 2.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    100% {
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    }
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.sticky-btn {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
}

/* Form Layout Improvements */
#pnlFiltreleme {
    padding: 0;
}

    #pnlFiltreleme .row {
        margin: 0;
    }

    #pnlFiltreleme .col-12,
    #pnlFiltreleme .col-md-3,
    #pnlFiltreleme .col-md-4,
    #pnlFiltreleme .col-md-5,
    #pnlFiltreleme .col-md-6 {
        padding: 0.75rem;
    }

    #pnlFiltreleme .g-4 > * {
        padding: 0.75rem;
    }

    #pnlFiltreleme .mt-2 {
        margin-top: 1rem !important;
    }

/* Modern Select Styles */
.modern-select-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.modern-select {
    border-radius: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    background: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    animation: selectSlideIn 0.5s ease-out;
    flex: 1;
}

@keyframes selectSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
    transform: translateY(-2px);
}

.form-control {
    border-radius: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    background: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    animation: inputSlideIn 0.5s ease-out;
}

@keyframes inputSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-control:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
    transform: translateY(-2px);
}

.input-group {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: inputGroupSlideIn 0.6s ease-out;
}

@keyframes inputGroupSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.input-group .form-control {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

    .input-group .form-control:first-child {
        border-top-left-radius: 0.75rem !important;
        border-bottom-left-radius: 0.75rem !important;
    }

    .input-group .form-control:last-child {
        border-top-right-radius: 0.75rem !important;
        border-bottom-right-radius: 0.75rem !important;
    }

/* Action Buttons */
.action-btn-group {
    display: flex;
    gap: 0.25rem;
    margin-top: 0;
    animation: buttonGroupSlideIn 0.7s ease-out;
    flex-shrink: 0;
}

@keyframes buttonGroupSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.action-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    min-width: auto;
}

.action-btn-success {
    background: #198754;
    color: white;
}

.action-btn-danger {
    background: #dc3545;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Form Label Styling */
.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Input Group Styling */
.input-group {
    gap: 0.5rem;
}

    .input-group .form-control {
        border: 2px solid #e9ecef;
        border-radius: 0.75rem;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
        flex: 1;
        min-height: 50px;
    }

        .input-group .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }

/* Switch Styling */
.form-check {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 2px solid #e9ecef;
    background: #ffffff;
    transition: all 0.3s ease;
}

    .form-check-input:checked {
        background: #0d6efd;
        border-color: #0d6efd;
        transform: scale(1.1);
    }

    .form-check-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

.form-check-label {
    font-weight: 600;
    color: #2c3e50;
    margin-left: 0.5rem;
}

/* Loading Animation */
.loading-icon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: none;
}

    .loading-icon::after {
        content: '';
        width: 50px;
        height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #0d6efd;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

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

    100% {
        transform: rotate(360deg);
    }
}

/* Disable fade effects */
.loading-icon.show,
.loading-icon.hide {
    transition: none !important;
}

/* Select2 specific fixes */
.select2-container--default .select2-selection--multiple {
    transition: none !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    transition: none !important;
}

.select2-dropdown {
    transition: none !important;
}

.select2-results__option {
    transition: none !important;
}

/* Disable all fade effects */
* {
    transition: none !important;
}

/* Re-enable specific transitions where needed */
.modern-select:hover,
.modern-btn:hover,
.action-btn:hover {
    transition: all 0.3s ease !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-header {
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .modern-title {
        font-size: 1.25rem;
    }

    .modern-logo {
        max-height: 30px;
    }

    .modern-btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .modern-select-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .action-btn-group {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .action-btn {
        flex: 1;
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }

    .modern-footer {
        padding: 1rem;
        margin-top: 2rem;
    }

        .modern-footer p {
            font-size: 0.9rem;
        }

    .modern-card {
        margin-bottom: 1rem;
        border-radius: 1rem;
    }

    .form-control, .modern-select {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .table {
        font-size: 0.8rem;
    }

        .table thead th {
            padding: 0.5rem 0.25rem;
        }

        .table tbody td {
            padding: 0.5rem 0.25rem;
        }
}

@media (max-width: 576px) {
    .modern-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modern-title {
        font-size: 1.1rem;
    }

    .modern-logo {
        max-height: 25px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .modern-btn {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .modern-select-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .action-btn-group {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.25rem;
    }

    .action-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        flex: 1;
    }

    .modern-footer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .form-label {
        font-size: 0.9rem;
    }
}

/* Additional Improvements */
.card-body {
    padding: 2rem;
}

@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
}

/* Fix for Select2 dropdown positioning */
.select2-dropdown {
    border: 2px solid #dce0e5 !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    margin-top: 4px;
}

.select2-results__option {
    padding: 0.5rem 1rem !important;
}

.select2-results__option--highlighted {
    background-color: #0d6efd !important;
}

/* Fix for form spacing */
.d-flex.align-items-end {
    align-items: flex-end !important;
    min-height: 60px;
    display: flex !important;
}

    .d-flex.align-items-end .form-check {
        width: 100%;
        margin-bottom: 0;
    }

/* Ensure consistent spacing */
.row.g-4 > * {
    padding: 0.75rem;
}

.row.g-4.mt-2 > * {
    padding: 0.75rem;
}

/* Modern Footer Styles */
.modern-footer {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    animation: footerSlideIn 1s ease-out;
}

@keyframes footerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-footer p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
}

.copyright {
    color: #0d6efd;
    font-weight: 700;
}

.phone {
    color: #198754;
    font-weight: 700;
}

.email {
    color: #dc3545;
    font-weight: 700;
}

.address {
    color: #6c757d;
    font-weight: 600;
}

/* Override default footer styles */
.footer.footer-static.footer-light {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Modern Modal Styles */
.modern-modal-content {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
}

    .modern-modal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #198754, #ffc107, #dc3545);
    }

.modal-title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.modal-icon {
    font-size: 2rem;
    color: #fff;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.modern-modal-body {
    padding: 2rem;
    background: #f8fafc;
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.info-icon {
    font-size: 2.5rem;
    color: white;
}

.info-text {
    flex: 1;
}

.info-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1rem;
    animation: textFadeIn 0.8s ease-out;
}

    .info-paragraph:last-child {
        margin-bottom: 0;
    }

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .info-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.warning-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 2px solid #ffc107;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: warningGlow 2s ease-in-out infinite alternate;
}

@keyframes warningGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    }
}

.warning-icon {
    font-size: 1.5rem;
    color: #ffc107;
    animation: warningPulse 1.5s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.warning-box span {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
}

.modern-modal-footer {
    background: #fff;
    border: none;
    padding: 1.5rem 2rem;
    text-align: center;
}

    .modern-modal-footer .btn {
        padding: 1rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 1rem;
        transition: all 0.3s ease;
        animation: buttonGlow 2s ease-in-out infinite alternate;
    }

@keyframes buttonGlow {
    0% {
        box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    }

    100% {
        box-shadow: 0 6px 25px rgba(25, 135, 84, 0.5);
    }
}

.modern-modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 135, 84, 0.6);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1040;
    display: none;
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Disable page interaction when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modern-modal-content {
        margin: 1rem;
        border-radius: 1rem;
    }

    .modern-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modern-modal-body {
        padding: 1.5rem;
    }

    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .info-icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .info-icon {
        font-size: 2rem;
    }

    .info-paragraph {
        font-size: 1rem;
    }

    .modern-modal-footer {
        padding: 1rem 1.5rem;
    }

        .modern-modal-footer .btn {
            padding: 0.75rem 2rem;
            font-size: 1rem;
        }
}

/* Modern Form Elements */
.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.modern-select-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.modern-select {
    border-radius: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    background: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    animation: selectSlideIn 0.5s ease-out;
    flex: 1;
}

@keyframes selectSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
    transform: translateY(-2px);
}

.form-control {
    border-radius: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    background: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    animation: inputSlideIn 0.5s ease-out;
}

@keyframes inputSlideIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-control:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
    transform: translateY(-2px);
}

.input-group {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: inputGroupSlideIn 0.6s ease-out;
}

@keyframes inputGroupSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.input-group .form-control {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

    .input-group .form-control:first-child {
        border-top-left-radius: 0.75rem !important;
        border-bottom-left-radius: 0.75rem !important;
    }

    .input-group .form-control:last-child {
        border-top-right-radius: 0.75rem !important;
        border-bottom-right-radius: 0.75rem !important;
    }

/* Action Buttons */
.action-btn-group {
    display: flex;
    gap: 0.25rem;
    margin-top: 0;
    animation: buttonGroupSlideIn 0.7s ease-out;
    flex-shrink: 0;
    height: 40px;
}

@keyframes buttonGroupSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.action-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    min-width: auto;
}

.action-btn-success {
    background: #198754;
    color: white;
}

.action-btn-danger {
    background: #dc3545;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Checkbox and Switch */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 2px solid #e9ecef;
    background: #ffffff;
    transition: all 0.3s ease;
}

    .form-check-input:checked {
        background: #0d6efd;
        border-color: #0d6efd;
        transform: scale(1.1);
    }

.form-check-label {
    font-weight: 600;
    color: #2c3e50;
    margin-left: 0.5rem;
}

/* Results Panel */
#sonuclarPanel {
    animation: resultsPanelSlideIn 0.8s ease-out;
    height: 955px;
}

@keyframes resultsPanelSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-header {
    background: #f8f9fa;
    color: #2c3e50;
    border-radius: 1rem 1rem 0 0;
    border: none;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.card-title {
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
}

/* Table Styles */
.table {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    animation: tableSlideIn 0.9s ease-out;
}

@keyframes tableSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.table thead th {
    background: #f8f9fa;
    color: #2c3e50;
    border: none;
    font-weight: 700;
    border-bottom: 2px solid #e9ecef;
}

.table tbody tr {
    transition: all 0.3s ease;
}

    .table tbody tr:hover {
        background: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

/* Footer */
.modern-footer {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    animation: footerSlideIn 1s ease-out;
}

@keyframes footerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-footer p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
}

.copyright {
    color: #0d6efd;
    font-weight: 700;
}

.phone {
    color: #198754;
    font-weight: 700;
}

.email {
    color: #dc3545;
    font-weight: 700;
}

.address {
    color: #6c757d;
    font-weight: 600;
}

/* Loading Animation */
.loading-icon {
    background: rgba(102, 126, 234, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Scroll to Top Button */
.scroll-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: scrollTopFloat 3s ease-in-out infinite;
}

@keyframes scrollTopFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
}

/* Modal Styles */
.modal-content {
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 1.5rem 1.5rem 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-body {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.modal-footer {
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 0 0 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
}

/* Select2 Customization */
.select2-container--default .select2-selection--multiple {
    border-radius: 1rem !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    animation: select2SlideIn 0.5s ease-out;
}

@keyframes select2SlideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    transform: translateY(-2px);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    animation: choiceGlow 2s ease-in-out infinite alternate;
}

@keyframes choiceGlow {
    0% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    }

    100% {
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
    }
}

/* Dropdown Styles */
.dropdown-menu {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: dropdownSlideIn 0.3s ease-out;
}

@keyframes dropdownSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    border-radius: 0.5rem;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateX(5px);
    }

/* Toast Notifications */
.toast {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: toastSlideIn 0.4s ease-out;
}

@keyframes toastSlideIn {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* DataTables Customization */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #2c3e50;
    font-weight: 600;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        border-radius: 0.75rem;
        border: 2px solid rgba(102, 126, 234, 0.2);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        margin: 0 0.25rem;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            border-color: #667eea;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

/* Print Styles */
@media print {
    body {
        background: white !important;
    }

    .modern-card,
    .modern-header,
    .modern-footer {
        box-shadow: none !important;
        background: white !important;
        backdrop-filter: none !important;
    }

    .modern-btn,
    .action-btn {
        display: none !important;
    }

    .table {
        background: white !important;
        box-shadow: none !important;
    }

        .table thead th {
            background: #f8f9fa !important;
            color: #2c3e50 !important;
        }
}

/* Modern Toggle Switch */
.form-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.2rem;
    padding: 0.5rem 0;
}

    .form-switch .form-check-input {
        width: 2.5rem !important;
        height: 1.4rem !important;
        background-color: #e9ecef !important;
        border-radius: 1rem !important;
        border: none !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        margin-right: 0.75rem !important;
        cursor: pointer !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
    }

        .form-switch .form-check-input:checked {
            background-color: #0d6efd !important;
            border-color: #0d6efd !important;
        }

        .form-switch .form-check-input:focus {
            box-shadow: 0 0 0 0.15rem rgba(13,110,253,.15) !important;
            outline: none !important;
        }

        .form-switch .form-check-input::before {
            content: '' !important;
            position: absolute !important;
            left: 0.2rem !important;
            top: 0.18rem !important;
            width: 1.05rem !important;
            height: 1.05rem !important;
            background: #fff !important;
            border-radius: 50% !important;
            transition: transform 0.3s ease !important;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
            z-index: 1 !important;
        }

        .form-switch .form-check-input:checked::before {
            transform: translateX(1.1rem) !important;
        }

        .form-switch .form-check-input:hover {
            background-color: #dee2e6 !important;
        }

        .form-switch .form-check-input:checked:hover {
            background-color: #0b5ed7 !important;
        }

    .form-switch .form-check-label {
        font-weight: 600 !important;
        color: #2c3e50 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        font-size: 1rem !important;
        cursor: pointer !important;
        user-select: none !important;
    }

        .form-switch .form-check-label i {
            color: #ffc107 !important;
            font-size: 1.1rem !important;
            margin-right: 0.25rem !important;
        }

/* Ensure form-check-input works properly */
.form-check-input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 1rem !important;
    height: 1rem !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.25rem !important;
    background-color: #fff !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    transition: all 0.3s ease !important;
}

    .form-check-input[type="checkbox"]:checked {
        background-color: #0d6efd !important;
        border-color: #0d6efd !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
    }

/* Sade Modern Butonlar */
.btn.modern-btn, .btn.modern-btn:focus {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 2rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
    outline: none;
}

    .btn.modern-btn:hover, .btn.modern-btn:active {
        background: #0b5ed7;
        color: #fff;
    }

.btn.modern-btn-outline, .btn.modern-btn-outline:focus {
    background: #fff;
    color: #0d6efd;
    border: 1.5px solid #0d6efd;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 2rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
}

    .btn.modern-btn-outline:hover, .btn.modern-btn-outline:active {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

/* Range Input Fields Styling */
.aralik-secim {
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 0.5rem;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .aralik-secim:hover {
        border-color: #0d6efd;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
    }

    .aralik-secim:focus-within {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
    }

    .aralik-secim .form-control {
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #2c3e50;
        transition: all 0.3s ease;
    }

        .aralik-secim .form-control:focus {
            border: none;
            box-shadow: none;
            background: transparent;
            outline: none;
        }

        .aralik-secim .form-control::placeholder {
            color: #6c757d;
            font-weight: 400;
        }

        /* Ensure proper spacing between inputs in the group */
        .aralik-secim .form-control:first-child {
            border-right: 1px solid #e9ecef;
            border-radius: 0.5rem 0 0 0.5rem;
        }

        .aralik-secim .form-control:last-child {
            border-left: 1px solid #e9ecef;
            border-radius: 0 0.5rem 0.5rem 0;
        }

.checkyeniacilan {
    margin-left: 50px;
}

/* Modern DataTable Styles */
.modern-datatable {
    border: 1px solid #dee2e6;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
}

    .modern-datatable thead th {
        background: #f8f9fa !important;
        color: #333 !important;
        border: 1px solid #dee2e6 !important;
        padding: 12px 8px !important;
        font-weight: 600 !important;
        font-size: 13px !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        position: relative !important;
        vertical-align: middle !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

        .modern-datatable thead th:first-child {
            border-top-left-radius: 0 !important;
        }

        .modern-datatable thead th:last-child {
            border-top-right-radius: 0 !important;
        }

    .modern-datatable tbody tr {
        position: relative;
        transition: all 0.3s ease;
    }

        /* Zebra Striping */
        .modern-datatable tbody tr:nth-child(even) {
            background-color: #f8f9fa !important;
        }

        .modern-datatable tbody tr:nth-child(odd) {
            background-color: white !important;
        }

        /* Hover Effect */
        .modern-datatable tbody tr:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

            .modern-datatable tbody tr:hover td {
                color: white !important;
            }

        /* Colored Left Border */
        .modern-datatable tbody tr::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 0 4px 4px 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modern-datatable tbody tr:hover::before {
            opacity: 1;
        }

    .modern-datatable tbody td {
        padding: 12px 8px !important;
        border: 1px solid #dee2e6 !important;
        font-size: 13px !important;
        vertical-align: middle !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        background: transparent !important;
    }

/* DataTables Override */
.dataTables_wrapper .dataTables_scrollHead table thead th,
.dataTables_wrapper .dataTables_scrollBody table thead th {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
    padding: 12px 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    position: relative !important;
    vertical-align: middle !important;
    text-align: center !important;
    white-space: nowrap !important;
}

    .dataTables_wrapper .dataTables_scrollHead table thead th:first-child,
    .dataTables_wrapper .dataTables_scrollBody table thead th:first-child {
        border-top-left-radius: 0 !important;
    }

    .dataTables_wrapper .dataTables_scrollHead table thead th:last-child,
    .dataTables_wrapper .dataTables_scrollBody table thead th:last-child {
        border-top-right-radius: 0 !important;
    }

/* DataTables Body Override */
.dataTables_wrapper .dataTables_scrollBody table tbody tr:nth-child(even) {
    background-color: #f8f9fa !important;
}

.dataTables_wrapper .dataTables_scrollBody table tbody tr:nth-child(odd) {
    background-color: white !important;
}

.dataTables_wrapper .dataTables_scrollBody table tbody tr:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

    .dataTables_wrapper .dataTables_scrollBody table tbody tr:hover td {
        color: white !important;
    }

.dataTables_wrapper .dataTables_scrollBody table tbody td {
    padding: 12px 8px !important;
    border: 1px solid #dee2e6 !important;
    font-size: 13px !important;
    vertical-align: middle !important;
    text-align: center !important;
    background: transparent !important;
}

/* Genel DataTable Override */
.dataTables_wrapper table {
    border: 1px solid #dee2e6 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    background: white !important;
}

    .dataTables_wrapper table thead th {
        background: #f8f9fa !important;
        color: #333 !important;
        border: 1px solid #dee2e6 !important;
        padding: 12px 8px !important;
        font-weight: 600 !important;
        font-size: 13px !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        position: relative !important;
        vertical-align: middle !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .dataTables_wrapper table tbody tr:nth-child(even) {
        background-color: #f8f9fa !important;
    }

    .dataTables_wrapper table tbody tr:nth-child(odd) {
        background-color: white !important;
    }

    .dataTables_wrapper table tbody tr:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
    }

        .dataTables_wrapper table tbody tr:hover td {
            color: white !important;
        }

    .dataTables_wrapper table tbody td {
        padding: 12px 8px !important;
        border: 1px solid #dee2e6 !important;
        font-size: 13px !important;
        vertical-align: middle !important;
        text-align: center !important;
        background: transparent !important;
    }

/* Modern Buttons */
.modern-action-btn {
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .modern-action-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .modern-action-btn:hover::before {
        left: 100%;
    }

    .modern-action-btn.btnekle {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

        .modern-action-btn.btnekle:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

    .modern-action-btn.btncikar {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
    }

        .modern-action-btn.btncikar:hover {
            background: linear-gradient(135deg, #e085e7 0%, #e54b60 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
        }

/* Modern Print and Sort Buttons */
.modern-print-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

    .modern-print-btn:hover {
        background: linear-gradient(135deg, #ff5252 0%, #e64a19 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
        color: white;
    }

.modern-sort-btn {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

    .modern-sort-btn:hover {
        background: linear-gradient(135deg, #26d0ce 0%, #1a7f6b 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
        color: white;
    }

/* Modern Dropdown */
.modern-dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    background: white;
}

.modern-dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

    .modern-dropdown-item:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateX(5px);
    }

/* Ko�ul Buttons */
.modern-kosul-btn {
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    margin: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 217, 61, 0.3);
}

    .modern-kosul-btn:hover {
        background: linear-gradient(135deg, #ffc107 0%, #ff5252 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
        color: white;
    }

/* Minimal Pagination Styles */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 15px;
    text-align: center;
    padding: 10px 0;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        border: none;
        border-radius: 3px;
        padding: 5px 10px;
        margin: 0 1px;
        background: transparent;
        color: #666;
        font-weight: 400;
        font-size: 13px;
        transition: none;
        text-decoration: none;
        min-width: 25px;
        text-align: center;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background: #f0f0f0;
            color: #333;
            text-decoration: none;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current {
            background: #007bff;
            color: white;
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
                background: #007bff;
                color: white;
            }

        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
            background: transparent;
            color: #ccc;
            cursor: not-allowed;
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
                background: transparent;
                color: #ccc;
            }

        .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
        .dataTables_wrapper .dataTables_paginate .paginate_button.next {
            background: transparent;
            color: #666;
            font-weight: 400;
            padding: 5px 10px;
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
            .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
                background: #f0f0f0;
                color: #333;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled,
            .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled {
                background: transparent;
                color: #ccc;
            }

                .dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled:hover,
                .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled:hover {
                    background: transparent;
                    color: #ccc;
                }

/* DataTables Info and Length */
.dataTables_wrapper .dataTables_info {
    color: #666;
    font-weight: 400;
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 4px 8px;
    background: white;
    font-weight: 400;
    font-size: 13px;
}

    .dataTables_wrapper .dataTables_length select:focus {
        border-color: #007bff;
        outline: none;
    }

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 4px 8px;
    background: white;
    font-weight: 400;
    font-size: 13px;
}

    .dataTables_wrapper .dataTables_filter input:focus {
        border-color: #007bff;
        outline: none;
    }

/* DataTable Responsive */
@media (max-width: 768px) {
    .modern-datatable {
        font-size: 12px;
    }

        .modern-datatable thead th,
        .modern-datatable tbody td {
            padding: 8px 6px;
        }

    .modern-action-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
}


.sonuclistecicard {
    padding: 0px !important;
}

.dataTables_wrapper {
    padding: 0px 2px !important;
}
