.crop-container {
    max-height: 600px;
    margin-bottom: 1rem;
}

.preview-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.preview-container:hover::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: 1;
    z-index: 2;
}

.preview-container img {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
    transition: filter 0.3s ease;
}

.preview-container:hover img {
    filter: brightness(0.8);
}

.crop-controls {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.aspect-ratio-btn {
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.aspect-ratio-btn.active {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.rotate-controls {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rotate-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #e9ecef;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rotate-btn:hover {
    background-color: #dee2e6;
}

.card-title-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.image-name {
    width: 100%;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.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;
}

.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;
}

.welcome-card {
    min-height: 300px;
    border: 2px dashed #dee2e6;
    background-color: #fff;
}

.welcome-card .fas {
    opacity: 0.5;
}

.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;
    background-color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
}

.image-section-info i {
    margin-right: 0.25rem;
    font-size: 0.9rem;
}