/* ================================
   SON YAYINLAR Bileşeni Stilleri
   ================================ */

/* Ana Container */
.etkinlikler-section {
    margin-top: 25px;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Section Header */
.section-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

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

.section-title i {
    margin-right: 0.5rem;
    color: white;
}

.section-actions .btn {
    color: white;
    border-color: white;
    background: transparent;
}

.section-actions .btn:hover {
    background: white;
    color: #dc3545;
}

/* Loading Animation stilleri loading-animation.css dosyasından yükleniyor */

/* Etkinlik Listesi - Trend Analizi Kartı Stili */
#son-yayinlar-container .etkinlikler-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#son-yayinlar-container .etkinlik-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0 !important;
    border-left: 1px solid #e2e8f0 !important;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

#son-yayinlar-container .etkinlik-item:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #4299e1 !important;
    border-left-color: #4299e1 !important;
}

#son-yayinlar-container .etkinlik-item:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

#son-yayinlar-container .etkinlik-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #4299e1 !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#son-yayinlar-container .etkinlik-icon:hover {
    background: #3182ce !important;
    transform: scale(1.05);
}

#son-yayinlar-container .etkinlik-content {
    flex: 1;
    min-width: 0;
}

#son-yayinlar-container .etkinlik-header {
    margin-bottom: 0.75rem;
}

#son-yayinlar-container .etkinlik-title {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

#son-yayinlar-container .etkinlik-meta {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem;
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    max-width: none !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

#son-yayinlar-container .etkinlik-date, 
#son-yayinlar-container .etkinlik-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    border: none !important;
}

#son-yayinlar-container .etkinlik-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

#son-yayinlar-container .etkinlik-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

#son-yayinlar-container .etkinlik-status {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: 1px solid transparent !important;
    animation: none !important;
    transform-origin: center;
    min-width: fit-content;
}

#son-yayinlar-container .etkinlik-status.active {
    background: #c6f6d5 !important;
    color: #22543d !important;
    border: 1px solid #9ae6b4 !important;
}

#son-yayinlar-container .etkinlik-status.active:hover {
    background: #9ae6b4 !important;
    color: #1a202c !important;
}

#son-yayinlar-container .etkinlik-status.inactive {
    background: #fed7d7 !important;
    color: #742a2a !important;
    border: 1px solid #fc8181 !important;
}

#son-yayinlar-container .etkinlik-status.inactive:hover {
    background: #fc8181 !important;
    color: #1a202c !important;
}

#son-yayinlar-container .etkinlik-status i {
    font-size: 0.75rem;
    margin-right: 0;
    animation: none !important;
}

/* Pagination */
.etkinlikler-pagination {
    padding: 0;
    background: transparent;
    border-top: none;
}

/* Input Tooltip */
.input-tooltip {
    background: #4299e1;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
    animation: tooltipFadeIn 0.3s ease-out;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Toast İkon Stilleri */
.toast-notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: iconBounce 0.6s ease-out;
}

.toast-notification .toast-message {
    flex: 1;
    line-height: 1.4;
}

/* Toast türlerine göre ikon renkleri */
.toast-notification.toast-success i {
    color: #28a745;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.toast-notification.toast-error i {
    color: #dc3545;
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.toast-notification.toast-warning i {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.toast-notification.toast-info i {
    color: #17a2b8;
    text-shadow: 0 0 10px rgba(23, 162, 184, 0.3);
}

/* İkon animasyonu */
@keyframes iconBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.toast-notification.toast-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-left-color: #155724;
}

.toast-notification.toast-error {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    border-left-color: #721c24;
}

.toast-notification.toast-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    border-left-color: #0c5460;
}

.toast-notification.toast-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border-left-color: #856404;
    color: #212529;
}

/* Real-time Status - Trend Analizi Stili */
.realtime-status {
    padding: 0.75rem 1rem;
    background: #f0f9ff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #2c5282;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.realtime-status i {
    font-size: 0.5rem;
    color: #48bb78;
}

/* Güncelleme Animasyonu */
.update-animation {
    animation: updatePulse 1.5s ease-in-out;
    background: #d4edda !important;
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.4) !important;
}

@keyframes updatePulse {
    0% { 
        transform: scale(1);
        background: #e8f5e8;
        box-shadow: 0 0 0 rgba(40, 167, 69, 0);
    }
    25% {
        transform: scale(1.05);
        background: #c3e6cb;
        box-shadow: 0 0 30px rgba(40, 167, 69, 0.6);
    }
    50% { 
        transform: scale(1.02);
        background: #d4edda;
        box-shadow: 0 0 25px rgba(40, 167, 69, 0.4);
    }
    75% {
        transform: scale(1.03);
        background: #c3e6cb;
        box-shadow: 0 0 35px rgba(40, 167, 69, 0.5);
    }
    100% { 
        transform: scale(1);
        background: #e8f5e8;
        box-shadow: 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Güncelleme İkonu Animasyonu */
.update-icon {
    animation: updateIconSpin 0.8s ease-in-out;
}

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

.realtime-status.text-warning {
    background: #fffbeb;
    border-color: #fef3c7;
    color: #92400e;
}

.realtime-status.text-warning i {
    color: #f59e0b;
}

.realtime-status.text-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.realtime-status.text-danger i {
    color: #ef4444;
}

/* Error ve No Items */
.error-message {
    text-align: center;
    padding: 2rem;
    color: #dc3545;
    font-size: 1.1rem;
    background: #f8f9fa;
    border: 1px solid #dc3545;
    border-radius: 8px;
    margin: 1rem;
}

.no-items {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    #son-yayinlar-container .etkinlik-item {
        padding: 1rem;
    }

    #son-yayinlar-container .etkinlik-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    #son-yayinlar-container .etkinlik-title {
        font-size: 1rem;
    }

    #son-yayinlar-container .etkinlik-meta {
        font-size: 0.8rem;
        gap: 0.75rem;
    }

    #son-yayinlar-container .etkinlik-description {
        font-size: 0.85rem;
    }
}

/* Modal açıkken body overflow'u engelle */
body.modal-open {
    overflow: hidden;
    padding-right: 15px; /* Scrollbar kaymasını önle */
}

/* ================================
   Etkinlik Detay Modal Stilleri
   ================================ */

 .etkinlik-modal {
     display: none;
     position: fixed;
     z-index: 9999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(5px);
     animation: modalFadeIn 0.3s ease-out;
 }

.etkinlik-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.etkinlik-modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.etkinlik-modal-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.etkinlik-modal-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 6rem;
}

.etkinlik-modal-header-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    z-index: 10;
}

.etkinlik-modal-share {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.etkinlik-modal-share:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.etkinlik-modal-share:active {
    transform: scale(0.95);
}

.etkinlik-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}

.etkinlik-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.etkinlik-modal-close:active {
    transform: scale(0.95);
}

.etkinlik-modal-meta-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.etkinlik-modal-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
}

.etkinlik-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.etkinlik-modal-meta-item i {
    font-size: 1rem;
}

.etkinlik-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.etkinlik-modal-description {
    color: #495057;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.etkinlik-modal-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.etkinlik-modal-status {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    animation: modalBadgeFloat 4s ease-in-out infinite;
    transform-origin: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    min-width: fit-content;
    white-space: nowrap;
}

.etkinlik-modal-status.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
}

.etkinlik-modal-status.active:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
    animation: modalBadgePulse 0.8s ease-in-out;
}

.etkinlik-modal-status.inactive {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.etkinlik-modal-status.inactive:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.6);
    animation: modalBadgeShake 0.8s ease-in-out;
}

.etkinlik-modal-status i {
    margin-right: 0.4rem;
    animation: modalIconGlow 2.5s ease-in-out infinite;
}

/* Modal Badge Animasyonları */
@keyframes modalBadgeFloat {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }
    50% { 
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
}

@keyframes modalBadgePulse {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.12) rotate(1deg); }
    50% { transform: scale(1.08) rotate(2deg); }
    75% { transform: scale(1.05) rotate(1deg); }
    100% { transform: scale(1.08) rotate(2deg); }
}

@keyframes modalBadgeShake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: scale(1.08) rotate(-1deg); }
    20%, 40%, 60%, 80% { transform: scale(1.08) rotate(1deg); }
}

@keyframes modalIconGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 3px currentColor);
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 10px currentColor);
        transform: scale(1.15);
    }
}

.etkinlik-modal-actions {
    display: flex;
    gap: 1rem;
}

.etkinlik-modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.etkinlik-modal-btn.primary {
    background: #dc3545;
    color: white;
}

.etkinlik-modal-btn.primary:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.etkinlik-modal-btn.secondary {
    background: #6c757d;
    color: white;
}

.etkinlik-modal-btn.secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Modal responsive */
@media (max-width: 768px) {
    .etkinlik-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .etkinlik-modal-header {
        padding: 1rem;
    }
    
    .etkinlik-modal-title {
        font-size: 1.4rem;
        padding-right: 2rem;
    }
    
    .etkinlik-modal-body {
        padding: 1.5rem;
    }
    
    .etkinlik-modal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .etkinlik-modal-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ================================
   Paylaşım Modal Stilleri
   ================================ */

.share-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

.share-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

.share-modal-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.share-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.share-modal-body {
    padding: 2rem;
    max-height: 75vh;
    overflow-y: auto;
}

/* Paylaşım Önizleme Kartı */
.share-preview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.share-card-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-card-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.share-card-logo i {
    font-size: 1.5rem;
}

.share-card-date {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.share-card-content {
    padding: 1.5rem;
    background: white;
}

.share-card-title {
    color: #dc3545;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.share-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

.meta-item i {
    color: #dc3545;
    font-size: 1rem;
}

.status-active {
    color: #28a745;
    font-weight: 600;
}

.status-inactive {
    color: #dc3545;
    font-weight: 600;
}

.share-card-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

.share-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.share-card-website {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.share-card-website i {
    color: #dc3545;
}

.share-card-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Paylaşım Seçenekleri */
.share-options {
    margin-bottom: 2rem;
}

.share-options h4 {
    color: #343a40;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.share-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.share-btn:hover i {
    transform: scale(1.1);
}

.share-btn:active {
    transform: translateY(-1px);
}

/* Paylaşım Buton Renkleri */
.share-btn-native {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border-color: #6c757d;
}

.share-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-color: #25d366;
}

.share-btn-twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
    border-color: #1da1f2;
}

.share-btn-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    color: white;
    border-color: #1877f2;
}

.share-btn-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    border-color: #0077b5;
}

.share-btn-copy {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border-color: #17a2b8;
}

/* Paylaşım Metni Önizleme */
.share-text-preview {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.share-text-preview h4 {
    color: #343a40;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-text-content {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.share-text-formatted .text-section {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.share-text-formatted .text-section:last-child {
    margin-bottom: 0;
}

.share-text-formatted strong {
    color: #343a40;
}

.share-text-formatted em {
    color: #6c757d;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .share-modal-content {
        width: 98%;
        margin: 1rem;
    }
    
    .share-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .share-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .share-modal-body {
        padding: 1.5rem;
    }
    
    .share-card-content {
        padding: 1rem;
    }
    
    .share-card-title {
        font-size: 1.2rem;
    }
    
    .share-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-card-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .share-btn {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .share-btn i {
        font-size: 1.3rem;
    }
}

/* ================================
   Gelişmiş Pagination Stilleri - Trend Analizi Uyumlu
   ================================ */

.pagination-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pagination-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.pagination-size-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.page-size-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
    white-space: nowrap;
}

.pagination-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
}

.total-items {
    color: #1a202c;
    font-weight: 600;
}

.page-info {
    color: #718096;
    font-size: 0.8rem;
}

.page-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #4a5568;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.page-btn:hover {
    border-color: #4299e1;
    color: #4299e1;
    background: #ebf8ff;
}

.page-btn.active {
    background: #4299e1;
    border-color: #4299e1;
    color: #ffffff;
    font-weight: 600;
}

.page-btn.prev-btn,
.page-btn.next-btn {
    min-width: 80px;
    font-weight: 500;
}

.page-dots {
    color: #718096;
    font-weight: 500;
    padding: 0 0.5rem;
}

.page-input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: border-color 0.2s ease;
    background: #ffffff;
    color: #1a202c;
}

.page-input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.page-go-btn {
    padding: 0.5rem 1rem;
    background: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-go-btn:hover {
    background: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3);
}

.page-size-select {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #ffffff;
    color: #4a5568;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease;
    min-width: 120px;
}

.page-size-select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Input Tooltip */
.input-tooltip {
    background: #dc3545;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: tooltipFadeIn 0.3s ease-out;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination Responsive */
@media (max-width: 768px) {
    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .pagination-controls {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-info {
        width: 100%;
        justify-content: center;
    }
    
    .pagination-size-selector {
        width: 100%;
        align-items: center;
    }
    
    .page-size-select {
        width: 100%;
        max-width: 200px;
    }
    
    .page-btn {
        padding: 0.5rem 0.75rem;
        min-width: 40px;
    }
    
    .page-btn.prev-btn,
    .page-btn.next-btn {
        min-width: 100px;
    }
    
    .page-input {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .pagination-wrapper {
        gap: 0.75rem;
    }
    
    .page-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .page-btn.prev-btn,
    .page-btn.next-btn {
        min-width: 90px;
        font-size: 0.8rem;
    }
}
