/* Kompakt Modern Header Stilleri */
.stats-modern-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 24px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stats-modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    pointer-events: none;
}

.stats-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stats-hero-image {
    flex-shrink: 0;
}

.yoli-hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.yoli-hero-avatar:hover {
    transform: scale(1.05);
}

.stats-hero-text {
    text-align: left;
}

.stats-modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.stats-modern-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Kompakt Empty State */
.stats-empty-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stats-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.stats-empty-icon .material-icons {
    font-size: 2.5rem;
    color: white;
}

.stats-empty-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.stats-empty-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.stats-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.stats-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    text-decoration: none;
    color: white;
}

.stats-start-btn .material-icons {
    font-size: 1.25rem;
}

/* Yoli Performans Butonu Stilleri */
.yoli-performance-btn-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.yoli-performance-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yoli-performance-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.yoli-performance-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.yoli-performance-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.yoli-performance-btn.cooldown {
    background: #64748b;
    color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.8;
}

.yoli-performance-btn.cooldown:hover {
    background: #64748b;
    transform: none;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.15);
}

.yoli-performance-btn.cooldown .yoli-btn-avatar {
    opacity: 0.6;
    filter: grayscale(100%);
}

.yoli-btn-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Yoli Performans Butonu - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .yoli-performance-btn-container {
        margin-top: 1.25rem;
    }
    
    .yoli-performance-btn {
        padding: 11px 22px;
        font-size: 0.9375rem;
        gap: 11px;
    }
    
    .yoli-btn-avatar {
        width: 22px;
        height: 22px;
    }
}

/* Yoli Performans Butonu - Mobil */
@media (max-width: 768px) {
    .yoli-performance-btn-container {
        margin-top: 1rem;
    }
    
    .yoli-performance-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
        gap: 10px;
    }
    
    .yoli-btn-avatar {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .yoli-performance-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
        gap: 8px;
    }
    
    .yoli-btn-avatar {
        width: 18px;
        height: 18px;
    }
}

/* Küçük ekranlar için */
@media (max-width: 320px) {
    .yoli-performance-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .yoli-btn-avatar {
        width: 16px;
        height: 16px;
    }
}

/* Yoli Cevap Kartı Stilleri */
.yoli-response-container {
    margin-top: 2rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.yoli-response-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.yoli-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.yoli-avatar .material-icons {
    font-size: 1.5rem;
}

.yoli-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.yoli-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.yoli-response-content {
    position: relative;
}

.yoli-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2563eb;
    font-weight: 500;
    padding: 1rem 0;
}

.yoli-loading .material-icons {
    font-size: 1.25rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.yoli-answer {
    color: #1e293b;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.yoli-answer p {
    margin-bottom: 1rem;
}

.yoli-answer p:last-child {
    margin-bottom: 0;
}

.yoli-answer strong {
    color: #2563eb;
    font-weight: 600;
}

.yoli-answer ul, .yoli-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.yoli-answer li {
    margin-bottom: 0.5rem;
}

/* Yoli Cevap Kartı - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .yoli-response-container {
        margin-top: 1.75rem;
        padding: 1.375rem;
    }
    
    .yoli-avatar {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .yoli-avatar .material-icons {
        font-size: 1.375rem;
    }
    
    .yoli-info h4 {
        font-size: 1.0625rem;
    }
    
    .yoli-info p {
        font-size: 0.8125rem;
    }
    
    .yoli-answer {
        font-size: 0.9rem;
    }
}

/* Yoli Cevap Kartı - Mobil */
@media (max-width: 768px) {
    .yoli-response-container {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    .yoli-response-header {
        gap: 0.875rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.875rem;
    }
    
    .yoli-avatar {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .yoli-avatar .material-icons {
        font-size: 1.25rem;
    }
    
    .yoli-info h4 {
        font-size: 1rem;
    }
    
    .yoli-info p {
        font-size: 0.75rem;
    }
    
    .yoli-loading {
        gap: 0.625rem;
        padding: 0.875rem 0;
    }
    
    .yoli-loading .material-icons {
        font-size: 1.125rem;
    }
    
    .yoli-answer {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .yoli-answer p {
        margin-bottom: 0.875rem;
    }
}

@media (max-width: 480px) {
    .yoli-response-container {
        margin-top: 1.25rem;
        padding: 1rem;
    }
    
    .yoli-response-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .yoli-avatar {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .yoli-avatar .material-icons {
        font-size: 1.125rem;
    }
    
    .yoli-info h4 {
        font-size: 0.9375rem;
    }
    
    .yoli-info p {
        font-size: 0.6875rem;
    }
    
    .yoli-loading {
        gap: 0.5rem;
        padding: 0.75rem 0;
        font-size: 0.875rem;
    }
    
    .yoli-loading .material-icons {
        font-size: 1rem;
    }
    
    .yoli-answer {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .yoli-answer p {
        margin-bottom: 0.75rem;
    }
}

/* Küçük ekranlar için */
@media (max-width: 320px) {
    .yoli-response-container {
        margin-top: 1rem;
        padding: 0.875rem;
    }
    
    .yoli-response-header {
        gap: 0.625rem;
        margin-bottom: 0.625rem;
        padding-bottom: 0.625rem;
    }
    
    .yoli-avatar {
        width: 2rem;
        height: 2rem;
    }
    
    .yoli-avatar .material-icons {
        font-size: 1rem;
    }
    
    .yoli-info h4 {
        font-size: 0.875rem;
    }
    
    .yoli-info p {
        font-size: 0.625rem;
    }
    
    .yoli-loading {
        gap: 0.375rem;
        padding: 0.625rem 0;
        font-size: 0.8125rem;
    }
    
    .yoli-loading .material-icons {
        font-size: 0.9375rem;
    }
    
    .yoli-answer {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .yoli-answer p {
        margin-bottom: 0.625rem;
    }
}

/* Delete Button Stilleri */
/* Mobil Uyumluluk - Kompakt Header */
@media (max-width: 768px) {
    .stats-modern-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .stats-hero-content {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-hero-text {
        text-align: center;
    }
    
    .stats-modern-title {
        font-size: 2rem;
    }
    
    .stats-modern-subtitle {
        font-size: 1rem;
    }
    
    .yoli-hero-avatar {
        width: 70px;
        height: 70px;
    }
    
    .stats-empty-modern {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .stats-empty-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .stats-empty-icon .material-icons {
        font-size: 2.25rem;
    }
    
    .stats-empty-content h3 {
        font-size: 1.375rem;
    }
    
    .stats-empty-content p {
        font-size: 0.9375rem;
    }
    
    .stats-start-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .stats-modern-header {
        padding: 1.25rem 0.75rem;
        margin-bottom: 1.25rem;
        border-radius: 16px;
    }
    
    .stats-hero-content {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-modern-title {
        font-size: 1.75rem;
    }
    
    .stats-modern-subtitle {
        font-size: 0.9375rem;
    }
    
    .yoli-hero-avatar {
        width: 60px;
        height: 60px;
    }
    
    .stats-empty-modern {
        padding: 1.25rem;
        border-radius: 14px;
    }
    
    .stats-empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stats-empty-icon .material-icons {
        font-size: 2rem;
    }
    
    .stats-empty-content h3 {
        font-size: 1.25rem;
    }
    
    .stats-empty-content p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-start-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }
}

@media (max-width: 320px) {
    .stats-modern-header {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
        border-radius: 14px;
    }
    
    .stats-hero-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .stats-modern-title {
        font-size: 1.5rem;
    }
    
    .stats-modern-subtitle {
        font-size: 0.875rem;
    }
    
    .yoli-hero-avatar {
        width: 50px;
        height: 50px;
    }
    
    .stats-empty-modern {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .stats-empty-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.875rem;
    }
    
    .stats-empty-icon .material-icons {
        font-size: 1.75rem;
    }
    
    .stats-empty-content h3 {
        font-size: 1.125rem;
    }
    
    .stats-empty-content p {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-start-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        border-radius: 10px;
    }
}

/* Stats CTA Section - Index.php benzeri tasarım */
.stats-cta-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.stats-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    pointer-events: none;
}

.stats-cta-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stats-cta-image {
    flex-shrink: 0;
}

.stats-cta-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.stats-cta-image img:hover {
    transform: scale(1.05);
}

.stats-cta-text {
    flex: 1;
}

.stats-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.stats-cta-subtitle {
    font-size: 1.125rem;
    color: #3b82f6;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.stats-cta-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.stats-cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.yoli-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.yoli-feature:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    background: #2a2a2a;
}

.yoli-feature .material-icons {
    font-size: 1.125rem;
    color: #ffffff;
}

.stats-black-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.stats-black-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.stats-black-btn .material-icons {
    font-size: 1.25rem;
}

.stats-cta-action {
    display: flex;
    gap: 1rem;
}

.stats-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.stats-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    text-decoration: none;
    color: white;
}

.stats-cta-btn .material-icons {
    font-size: 1.25rem;
}

/* Stats CTA - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .stats-cta-section {
        padding: 3.5rem 2rem;
        margin: 1.75rem 0;
        border-radius: 20px;
    }
    
    .stats-cta-content {
        gap: 2.5rem;
    }
    
    .stats-cta-image img {
        width: 110px;
        height: 110px;
    }
    
    .stats-cta-title {
        font-size: 2rem;
    }
    
    .stats-cta-subtitle {
        font-size: 1.0625rem;
    }
    
    .stats-cta-description {
        font-size: 0.9375rem;
    }
    
    .stats-cta-features {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }
    
    .stats-feature {
        font-size: 0.875rem;
    }
    
    .stats-feature .material-icons {
        font-size: 1.125rem;
    }
    
    .stats-cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        border-radius: 14px;
    }
    
    .stats-cta-btn .material-icons {
        font-size: 1.125rem;
    }
}

/* Stats CTA - Mobil */
@media (max-width: 768px) {
    .stats-cta-section {
        padding: 3rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 18px;
    }
    
    .stats-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .stats-cta-image img {
        width: 100px;
        height: 100px;
    }
    
    .stats-cta-title {
        font-size: 1.875rem;
    }
    
    .stats-cta-subtitle {
        font-size: 1rem;
    }
    
    .stats-cta-description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }
    
    .stats-cta-features {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-feature {
        font-size: 0.8125rem;
    }
    
    .stats-feature .material-icons {
        font-size: 1rem;
    }
    
    .stats-cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        border-radius: 14px;
    }
    
    .stats-cta-btn .material-icons {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .stats-cta-section {
        padding: 2.5rem 1.25rem;
        margin: 1.25rem 0;
        border-radius: 16px;
    }
    
    .stats-cta-content {
        gap: 1.75rem;
    }
    
    .stats-cta-image img {
        width: 90px;
        height: 90px;
    }
    
    .stats-cta-title {
        font-size: 1.625rem;
    }
    
    .stats-cta-subtitle {
        font-size: 0.9375rem;
    }
    
    .stats-cta-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-cta-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-feature {
        justify-content: center;
        font-size: 0.8125rem;
    }
    
    .stats-feature .material-icons {
        font-size: 1rem;
    }
    
    .stats-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }
    
    .stats-cta-btn .material-icons {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .stats-cta-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
        border-radius: 14px;
    }
    
    .stats-cta-content {
        gap: 1.5rem;
    }
    
    .stats-cta-image img {
        width: 80px;
        height: 80px;
    }
    
    .stats-cta-title {
        font-size: 1.5rem;
    }
    
    .stats-cta-subtitle {
        font-size: 0.875rem;
    }
    
    .stats-cta-description {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-cta-features {
        gap: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .stats-feature {
        font-size: 0.75rem;
    }
    
    .stats-feature .material-icons {
        font-size: 0.9375rem;
    }
    
    .stats-cta-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        border-radius: 10px;
    }
    
    .stats-cta-btn .material-icons {
        font-size: 0.9375rem;
    }
}

.stats-clear-btn .delete-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Delete Popup Stilleri */
.delete-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.delete-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.delete-popup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delete-popup-overlay.show .delete-popup {
    transform: scale(1) translateY(0);
}

.delete-popup.success {
    border-top: 4px solid #10b981;
}

.delete-popup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    text-align: center;
}

.delete-popup-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.success-icon {
    width: 3rem;
    height: 3rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.delete-popup-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.delete-popup-content {
    margin-bottom: 2rem;
    text-align: center;
}

.delete-popup-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.delete-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.delete-btn-cancel,
.delete-btn-confirm {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn-cancel {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.delete-btn-cancel:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: translateY(-1px);
}

.delete-btn-confirm {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.delete-btn-confirm:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.delete-popup.success .delete-btn-confirm {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.delete-popup.success .delete-btn-confirm:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Delete Popup - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .delete-popup {
        max-width: 380px;
        padding: 1.75rem;
    }
    
    .delete-popup-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .success-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.375rem;
    }
    
    .delete-popup-header h3 {
        font-size: 1.25rem;
    }
    
    .delete-popup-content p {
        font-size: 0.9375rem;
    }
    
    .delete-btn-cancel,
    .delete-btn-confirm {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
        min-width: 110px;
    }
}

/* Delete Popup - Mobil */
@media (max-width: 768px) {
    .delete-popup {
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .delete-popup-header {
        gap: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .delete-popup-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .success-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .delete-popup-header h3 {
        font-size: 1.125rem;
    }
    
    .delete-popup-content {
        margin-bottom: 1.75rem;
    }
    
    .delete-popup-content p {
        font-size: 0.875rem;
    }
    
    .delete-popup-actions {
        gap: 0.875rem;
    }
    
    .delete-btn-cancel,
    .delete-btn-confirm {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .delete-popup {
        max-width: 320px;
        padding: 1.25rem;
        width: 95%;
    }
    
    .delete-popup-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        flex-direction: column;
    }
    
    .delete-popup-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .success-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.125rem;
    }
    
    .delete-popup-header h3 {
        font-size: 1rem;
    }
    
    .delete-popup-content {
        margin-bottom: 1.5rem;
    }
    
    .delete-popup-content p {
        font-size: 0.8125rem;
    }
    
    .delete-popup-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .delete-btn-cancel,
    .delete-btn-confirm {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        min-width: auto;
    }
}

/* Küçük ekranlar için */
@media (max-width: 320px) {
    .delete-popup {
        max-width: 300px;
        padding: 1rem;
    }
    
    .delete-popup-header {
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }
    
    .delete-popup-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .success-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .delete-popup-header h3 {
        font-size: 0.9375rem;
    }
    
    .delete-popup-content {
        margin-bottom: 1.25rem;
    }
    
    .delete-popup-content p {
        font-size: 0.75rem;
    }
    
    .delete-popup-actions {
        gap: 0.625rem;
    }
    
    .delete-btn-cancel,
    .delete-btn-confirm {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .stats-clear-btn .delete-icon {
        width: 20px;
        height: 20px;
    }
}
