:root {
    --primary-color: #28a745;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --text-color: #343a40;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-color: #dee2e6;
    --hover-color: #218838;
}

body.theme-green {
    --primary-color: #28a745;
    --hover-color: #218838;
}

body.theme-blue {
    --primary-color: #007bff;
    --hover-color: #0069d9;
}

body.theme-purple {
    --primary-color: #6f42c1;
    --hover-color: #5e35b1;
}

body.theme-orange {
    --primary-color: #fd7e14;
    --hover-color: #e96b02;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: #f8f9fa;
}

.card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    overflow: hidden;
    border: none;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

.card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    border-bottom: none;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.quote-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.quote-date {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.quote-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-expired {
    background-color: #f8d7da;
    color: #721c24;
}

.quote-details {
    margin-bottom: 15px;
}

.quote-detail-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

    .quote-detail-item:last-child {
        border-bottom: none;
    }

.quote-detail-label {
    font-weight: 500;
    color: var(--secondary-color);
}

.quote-detail-value {
    font-weight: 600;
}

.quote-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.btn-download-pdf {
    background-color: #dc3545;
    color: white;
    transition: background-color 0.2s;
}

    .btn-download-pdf:hover {
        background-color: #c82333;
        color: white;
    }

.empty-state {
    text-align: center;
    padding: 60px 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-header {
    padding: 15px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-header h1 {
    color: #2c3e50;
    letter-spacing: -0.3px;
    font-size: 1.5rem;
    margin: 0;
}

.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.icon-circle i {
    font-size: 1.2rem;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bg-primary-subtle {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.bg-success-subtle {
    background-color: rgba(var(--bs-success-rgb), 0.1);
}

.bg-danger-subtle {
    background-color: rgba(var(--bs-danger-rgb), 0.1);
}

/* Dropdown menu stilleri */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 280px;
    margin-top: 10px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item:active {
    background-color: #f1f4f9;
}

.dropdown-divider {
    margin: 0.25rem 0;
    opacity: 0.1;
}

.quote-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* İkonun küçülmesini engelle */
    margin-right: 12px !important; /* Sağ tarafta daha fazla boşluk */
}

.quote-icon i {
    font-size: 1.1rem;
}

.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.15em;
}

.search-filters {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .quote-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .quote-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* Loader Animation */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--primary-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 0 auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Filtre konteyner stilleri */
.filters-container {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filters-container .card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 20px;
}

.filters-container .card-header h5 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}

.filters-container .card-body {
    padding: 20px;
    background-color: #ffffff;
}

.filters-container .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.filters-container .input-group {
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.filters-container .input-group:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.filters-container .input-group-text {
    border: none;
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
}

.filters-container .form-select {
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: #495057;
}

.filters-container .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Filtre özeti stili */
#filterSummary {
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 0.95rem;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kart başlık renkleri */
.card-header-health {
    background-color: #28a745 !important;
}

.card-header-traffic {
    background-color: #007bff !important;
}
.card-header-dask {
    background-color: rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important;
}

.card-header-casco {
    background-color: #dc3545 !important;
}
.card-header-housing {
    background-color: #c400e3 !important;
}

.card-header-default {
    background-color: #6c757d !important;
}

/* Buton stilleri */
.btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Pagination stilleri */
.pagination .page-link {
    border-radius: 4px;
    margin: 0 3px;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Custom animation for quote cards */
.quote-appear {
    animation: quoteAppear 0.5s ease-out;
}

@keyframes quoteAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Quote Card Styles for New Format */
.quote-list-header {
    display: flex;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.header-company {
    flex: 2;
}

.header-premium, .header-proposal {
    flex: 1;
    text-align: right;
}

.quote-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.company-info {
    display: flex;
    align-items: center;
    flex: 2;
}

.company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.company-name {
    font-weight: 500;
}

.quote-premium {
    flex: 1;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.quote-proposal-no {
    flex: 1;
    text-align: right;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.quote-summary-item {
    margin-bottom: 5px;
}

.summary-label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-right: 5px;
}

.summary-value {
    font-weight: 600;
}

    .summary-value.highlight {
        color: var(--primary-color);
        font-size: 1.1rem;
    }

/* Card için özel düzenleme */
.col-md-12.quote-appear {
    animation: quoteAppear 0.5s ease-out;
    margin-bottom: 20px;
}

/* Mobil görünüm düzenlemeleri */
@media (max-width: 768px) {
    .quote-list-header {
        display: none; /* Başlıkları mobilde gizle */
    }

    .quote-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }

    .company-info {
        margin-bottom: 10px;
        width: 100%;
    }

    .quote-premium, .quote-proposal-no {
        width: 100%;
        text-align: left;
        margin: 5px 0;
    }

        .quote-premium::before {
            content: "Prim: ";
            font-weight: normal;
            color: var(--secondary-color);
        }

        .quote-proposal-no::before {
            content: "Teklif No: ";
            font-weight: normal;
        }
}
/* Ürün türüne göre renk sınıfları */
.card-header-health {
    background: linear-gradient(90deg,rgba(42, 155, 80, 1) 0%, rgba(61, 224, 132, 1) 58%, rgba(142, 237, 83, 1) 100%) !important; /* Sağlık için yeşil */
    color: white;
}


.card-header-traffic {
    background: linear-gradient(90deg,rgba(28, 109, 163, 1) 0%, rgba(61, 194, 224, 1) 58%, rgba(83, 204, 237, 1) 100%) !important; /* Trafik için mavi */
    color: white;
}


.card-header-casco {
    background-color: #dc3545 !important; /* Kasko için kırmızı */
    color: white;
}

.card-header-default {
    background-color: #6c757d !important; /* Diğer ürünler için gri */
    color: white;
}
.modal-footer-edited {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* Değişiklik burada */
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

/* Quote Detail Modal Styles */
.quote-detail-modal {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-detail-modal .modal-header {
    padding: 15px 20px;
    border-bottom: none;
}

.quote-detail-modal .modal-body {
    padding: 20px;
    max-height: calc(100vh - 200px); /* Desktop için -200px */
    overflow-y: auto;
}

.quote-info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.info-icon {
    width: 30px;
    height: 30px;
    background-color: #e8f5e9;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 2px;
}

.info-value {
    font-weight: 500;
    color: #333;
}

.section-title {
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
    font-weight: 600;
}

.table-container {
    position: relative;
    width: 100%;
    overflow: visible;
}

.quotes-grid {
    margin-top: 1rem;
}

.quote-card {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.quote-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.themed-card {
    background-color: #e8f5e9;
}

.white-card {
    background-color: #ffffff;
}

.quote-details {
    position: relative;
}

@media (min-width: 768px) {
    .quote-card {
        padding: 1rem 1.5rem;
    }

    .company-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .proposal-value {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .premium-value {
        white-space: nowrap;
    }
}

@media (max-width: 767.98px) {
    .quote-card {
        padding: 1rem;
    }

    .quote-details {
        border-top: 1px solid #dee2e6;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }
}

.quote-table .themed-row {
    background-color: #e8f5e9;
}

.quote-table .themed-row:hover {
    background-color: #e8f5e9dd;
}

.quote-table .white-row {
    background-color: #ffffff;
}

.company-logo-container {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: #fff;
    border-radius: 4px;
    padding: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-small {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.company-name {
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.premium-cell {
    white-space: nowrap;
    font-weight: 600;
    color: #333;
}

.premium-value {
    display: inline-block;
    white-space: nowrap;
}

.proposal-cell {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #6c757d;
    font-size: 0.9rem;
}

.proposal-value {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .proposal-value {
        height: 50px;
        max-height: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        position: relative;
        cursor: pointer;
        transition: max-height 0.3s ease;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .proposal-value.expanded {
        max-height: 1000px;
        -webkit-line-clamp: initial;
        line-clamp: initial;
    }
}

.best-price-badge {
    background-color: #28a745 !important;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 8px;
    white-space: nowrap;
}

.pdf-download-btn {
    background-color: #28a745;
    color: white;
    border: none;
}

.pdf-download-btn:hover {
    background-color: #28a745dd;
    color: white;
}

.btn-theme {
    background-color: #28a745;
    color: white;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .quote-info-box .row > div {
        margin-bottom: 10px;
    }
    
    .modal-body {
        max-height: calc(100vh - 160px);
        padding: 15px;
    }
    
    .quote-table th, 
    .quote-table td {
        padding: 10px;
    }
}

.modal-xl {
    max-width: 1140px;
    width: 95%;
}

.quote-table thead th {
    background-color: #f8f9fa;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

/* Geçmiş teklifler modal'ı için scroll içindeki modal footer - sadece mobilde */
.quote-detail-modal .modal-footer-scrollable {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 15px 20px;
    margin: 0 -20px -20px -20px;
    border-radius: 0 0 8px 8px;
    display: none; /* Desktop'ta gizle */
}

.quote-detail-modal .modal-footer-scrollable .btn {
    margin-bottom: 0;
}

/* Geçmiş teklifler modal'ı için desktop'ta normal modal footer göster */
@media (min-width: 768px) {
    .quote-detail-modal .modal-footer-scrollable {
        display: none !important; /* Desktop'ta gizle */
    }
    
    .quote-detail-modal .modal-footer {
        display: flex !important; /* Desktop'ta normal footer'ı göster */
    }
}

/* Poliçeleştirme modal'ı için desktop scroll footer */
#policyCreationModal .modal-footer-scrollable {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 15px 20px;
    margin: 0 -20px -20px -20px;
    border-radius: 0 0 8px 8px;
}

#policyCreationModal .modal-footer-scrollable .btn {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    /* Mobilde scroll footer'ı göster */
    .modal-footer-scrollable {
        display: block !important;
        padding: 10px 15px;
        margin: 0 -15px -10px -15px;
    }
    
    /* Mobilde normal footer'ı gizle */
    .modal-footer {
        display: none !important;
    }
    
    /* Modal body padding'ini azalt */
    .quote-detail-modal .modal-body {
        padding-bottom: 10px;
        max-height: calc(100vh - 100px); /* Mobil için -100px */
    }
    
    /* Modal content padding'ini azalt */
    .quote-detail-modal .modal-content {
        margin-bottom: 0;
    }
    
    .modal-footer-scrollable .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer-scrollable .d-flex > div {
        width: 100%;
        justify-content: center;
    }
    
    .modal-footer-scrollable .btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    /* Modal genel padding'lerini azalt */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 8px;
    }
    
    .modal-body {
        padding: 15px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    /* Poliçeleştirme Modal'ı için mobil düzenlemeler */
    #policyCreationModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    #policyCreationModal .modal-content {
        border-radius: 8px;
    }
    
    #policyCreationModal .modal-body {
        padding: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    #policyCreationModal .form-group {
        margin-bottom: 5px;
    }
    
    #policyCreationModal .form-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    #policyCreationModal .form-control,
    #policyCreationModal .form-select {
        font-size: 16px; /* iOS zoom önleme */
        padding: 10px 12px;
    }
    
    #policyCreationModal .row.g-3 {
        margin: 0 -7.5px;
    }
    
    #policyCreationModal .row.g-3 > [class*="col-"] {
        padding: 0 7.5px;
        margin-bottom: 5px;
    }
    
    #policyCreationModal .modal-footer-scrollable {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        padding: 15px;
        margin: 0 -15px -15px -15px;
        border-radius: 0 0 8px 8px;
    }
    
    #policyCreationModal .modal-footer-scrollable .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    
    #policyCreationModal .modal-footer-scrollable .btn {
        width: 100%;
        margin: 0;
        padding: 12px;
        font-size: 16px;
    }
    
    #policyCreationModal .alert {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* Comparison Feature Styles */
.comparison-checkbox-column {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.comparison-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.comparison-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Mobil görünüm için checkbox düzenlemeleri */
@media (max-width: 767.98px) {
    .comparison-checkbox-column {
        width: 25px;
        min-width: 25px;
        max-width: 25px;
        padding: 0 3px;
    }
    
    .comparison-checkbox {
        width: 18px;
        height: 18px;
    }
    
    .comparison-button-container {
        bottom: 15px;
        right: 15px;
    }
    
    .comparison-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .comparison-count {
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }
}

.comparison-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.comparison-button-container.show {
    opacity: 1;
    transform: translateY(0);
}

.comparison-button {
    background: linear-gradient(45deg, var(--primary-color), var(--hover-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.comparison-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.comparison-button:active {
    transform: translateY(0);
}

.comparison-count {
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Karşılaştırma raporları stilleri */
.comparison-reports-grid {
    margin-top: 20px;
}

.comparison-report-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.report-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.report-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.report-info {
    flex: 1;
}

.report-title {
    font-weight: 600;
    font-size: 16px;
    color: #495057;
    margin-bottom: 4px;
}

.report-date {
    font-size: 14px;
    color: #6c757d;
}

.report-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-details {
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.detail-item i {
    color: #007bff;
    width: 16px;
}

.report-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.report-actions .btn {
    width: 100%;
    font-size: 12px;
    padding: 8px 12px;
}

/* Mobil uyumluluk */
@media (max-width: 767.98px) {
    .comparison-report-card {
        padding: 15px;
    }
    
    .report-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .report-title {
        font-size: 14px;
    }
    
    .report-date {
        font-size: 12px;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .report-actions .btn {
        font-size: 11px;
        padding: 6px 10px;
    }
}