/* Personalización sutil del estilo Mercado Libre */
body {
    background-color: #ebebeb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card {
    border: none;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.card-img-top {
    height: 220px;
    object-fit: contain;
    background-color: white;
}

.btn-primary {
    background-color: #3483fa;
    border: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2968c8;
}

.text-warning {
    color: #333 !important;
    font-size: 1.5rem;
    font-weight: 400;
}

.badge.bg-success {
    background-color: #00a650 !important;
    font-weight: 400;
}

/* Estilo de toasts más visibles */
.toast {
    border-left: 4px solid;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    min-width: 300px;
}

#toastSuccess {
    border-left-color: #00a650;
}

#toastError {
    border-left-color: #dc3545;
}

.toast-header {
    border-bottom: none;
}