/* BusinessDirectory Base Styles */
.bd-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bd-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}
.bd-gradient-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.bd-status-badge-pending {
    background-color: #ffc107;
    color: #000;
}
.bd-status-badge-approved {
    background-color: #28a745;
    color: #fff;
}
.bd-status-badge-rejected {
    background-color: #dc3545;
    color: #fff;
}
.bd-slug-input {
    font-family: monospace;
    font-size: 0.9rem;
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.bd-file-preview {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
