.not-compressed-message {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    color: #6c757d;
    text-align: center;
    min-height: 200px;
}

.welcome-card {
    min-height: 300px;
    border: 2px dashed #dee2e6;
    background-color: #fff;
}

.welcome-card .fas {
    opacity: 0.5;
}

.badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}



/* Sıkıştırma kalitesi çubuğu stilleri */
.form-range {
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.form-range::-webkit-slider-thumb {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.5rem;
    background-color: #198754;
    border: 0;
    border-radius: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.form-range::-webkit-slider-runnable-track {
    height: 0.5rem;
    background-color: #e9ecef;
    border-radius: 1rem;
}

.form-range::-moz-range-thumb {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #198754;
    border: 0;
    border-radius: 1rem;
}

.form-range::-moz-range-track {
    height: 0.5rem;
    background-color: #e9ecef;
    border-radius: 1rem;
}

#quality-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #198754;
}

/* Kart başlık stilleri */
.card-title-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.image-info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    color: #6c757d;
}

.image-info-badge i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.image-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    width: 100%;
}

/* Resim başlık stilleri */
.image-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.image-section-header h6 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.image-section-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Lightbox stilleri */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

/* Resim hover efekti */
.image-preview {
    position: relative;
    cursor: pointer;
}

.image-preview::after {
    content: '🔍 Büyüt';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-preview:hover::after {
    opacity: 1;
}

/* Kalite slider stilleri */
.quality-control {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
    margin: 1rem 0;
}

.quality-control .form-range {
    margin-bottom: 0.5rem;
}

.quality-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #198754;
}

/* Sticky panel için z-index */
.sticky-top {
    z-index: 100;
}

/* Navbar için z-index */
.navbar {
    z-index: 200;
}

/* Toast bildirimleri için z-index */
.position-fixed {
    z-index: 300;
}