/* Fiş logosu — yükleme + önizleme aynı satır, kompakt önizleme kartı */
.location-logo-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.location-logo-upload-cell {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 15.5rem;
    width: 100%;
}

.location-logo-preview-cell {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-height: 2.5rem;
}

.location-logo-preview-with-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.location-logo-preview-card {
    margin: 4px;
    padding: 0.45rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 6px 16px -4px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    width: 100px;
    box-sizing: border-box;
    text-align: center;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
    font: inherit;
    line-height: 0;
}

.location-logo-preview-card:hover {
    border-color: rgba(13, 110, 253, 0.35);
    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.08),
        0 10px 24px -6px rgba(13, 110, 253, 0.15);
    transform: translateY(-1px);
}

.location-logo-preview-card:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.location-logo-preview-card:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.location-logo-preview-card .location-logo-preview-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 5.5rem;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    pointer-events: none;
}

@media (max-width: 576px) {
    .location-logo-row {
        flex-direction: column;
        align-items: stretch;
    }

    .location-logo-upload-cell {
        max-width: 100%;
    }

    .location-logo-preview-cell {
        justify-content: flex-start;
    }
}

