/* Business Logo Upload Styles */
.logo-upload-section {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 2px dashed #e0e0e0;
    border-radius: 6px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.logo-upload-section:hover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.logo-upload-section.dragover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    transform: scale(1.01);
}

.logo-preview-container {
    flex-shrink: 0;
}

.logo-upload-content {
    flex: 1;
    text-align: left;
}

.logo-preview {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin: 0;
    display: block;
    border: 2px solid #e0e0e0;
    background: white;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logo-placeholder:hover {
    border-color: #007bff;
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.logo-upload-input {
    display: none;
}

.logo-upload-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin: 0.2rem 0.2rem 0.2rem 0;
    transition: all 0.2s ease;
    width: auto;
    display: inline-block;
}

.logo-upload-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.logo-remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin: 0.2rem;
    transition: all 0.2s ease;
    width: auto;
    display: inline-block;
}

.logo-remove-btn:hover {
    background: #c82333;
}

.logo-upload-text {
    color: #6c757d;
    font-size: 0.8rem;
    margin: 0 0 0.2rem 0;
    font-weight: 500;
}

.logo-upload-hint {
    color: #999;
    font-size: 0.7rem;
    font-style: italic;
    margin: 0.2rem 0 0 0;
}

.logo-error {
    color: #dc3545;
    font-size: 0.7rem;
    margin-top: 0.25rem;
    padding: 0.25rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
    display: none;
}

.logo-loading {
    color: #007bff;
    font-size: 0.7rem;
    margin-top: 0.25rem;
    display: none;
}

/* Business card logo display */
.business-logo-display {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    background: white;
    margin-bottom: 1rem;
}

.business-logo-letter {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Business grid logo updates */
.business-logo-item .business-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    margin-bottom: 0.25rem;
}

/* Business detail page logo */
.business-detail .business-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* Hide business stats for now */
.business-detail .business-stats {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-upload-section {
        padding: 0.4rem;
        margin-bottom: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-upload-content {
        text-align: center;
    }
    
    .logo-preview,
    .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-upload-btn,
    .logo-remove-btn {
        font-size: 10px;
        padding: 3px 6px;
        margin: 0.1rem;
    }
    
    .logo-upload-text {
        font-size: 0.75rem;
    }
    
    .logo-upload-hint {
        font-size: 0.65rem;
    }
    
    .business-logo-display,
    .business-logo-letter {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .business-logo-item .business-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .business-detail .business-logo-img {
        width: 80px;
        height: 80px;
    }
}